Let there be BUILDS
This commit is contained in:
parent
63ce0cde19
commit
7f876659db
|
@ -3,17 +3,54 @@ before_script:
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
|
- build-docker
|
||||||
|
|
||||||
build-amd64:
|
build-windows-amd64:
|
||||||
|
image: golang:alpine
|
||||||
|
script:
|
||||||
|
- go get -d
|
||||||
|
- GOOS=windows go build -o godns.exe
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- godns.exe
|
||||||
|
|
||||||
|
build-linux-amd64:
|
||||||
|
image: golang:alpine
|
||||||
|
script:
|
||||||
|
- go get -d
|
||||||
|
- GOOS=linux go build -o godns
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- godns
|
||||||
|
|
||||||
|
build-linux-arm:
|
||||||
|
image: golang:alpine
|
||||||
|
script:
|
||||||
|
- go get -d
|
||||||
|
- GOARCH=arm GOOS=linux go build -o godns-arm
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- godns-arm
|
||||||
|
|
||||||
|
build-linux-arm64:
|
||||||
|
image: golang
|
||||||
|
script:
|
||||||
|
- go get -d
|
||||||
|
- GOARCH=arm64 GOOS=linux go build -o godns-arm64
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- godns-arm64
|
||||||
|
|
||||||
|
build-docker-amd64:
|
||||||
image: docker:latest
|
image: docker:latest
|
||||||
stage: build
|
stage: build-docker
|
||||||
script:
|
script:
|
||||||
- docker image build -t $CI_REGISTRY_IMAGE:amd64-latest -f docker/Dockerfile .
|
- docker image build -t $CI_REGISTRY_IMAGE:amd64-latest -f docker/Dockerfile .
|
||||||
- docker push $CI_REGISTRY_IMAGE:amd64-latest
|
- docker push $CI_REGISTRY_IMAGE:amd64-latest
|
||||||
|
|
||||||
build-arm:
|
build-docker-arm:
|
||||||
image: docker:latest
|
image: docker:latest
|
||||||
stage: build
|
stage: build-docker
|
||||||
script:
|
script:
|
||||||
- mkdir tmp
|
- mkdir tmp
|
||||||
- wget -O tmp/qemu-arm-static https://github.com/multiarch/qemu-user-static/releases/download/v2.12.0/qemu-arm-static
|
- wget -O tmp/qemu-arm-static https://github.com/multiarch/qemu-user-static/releases/download/v2.12.0/qemu-arm-static
|
||||||
|
@ -21,9 +58,9 @@ build-arm:
|
||||||
- docker image build -t $CI_REGISTRY_IMAGE:arm-latest -f docker/Dockerfile.arm .
|
- docker image build -t $CI_REGISTRY_IMAGE:arm-latest -f docker/Dockerfile.arm .
|
||||||
- docker push $CI_REGISTRY_IMAGE:arm-latest
|
- docker push $CI_REGISTRY_IMAGE:arm-latest
|
||||||
|
|
||||||
build-arm64:
|
build-docker-arm64:
|
||||||
image: docker:latest
|
image: docker:latest
|
||||||
stage: build
|
stage: build-docker
|
||||||
script:
|
script:
|
||||||
- mkdir tmp
|
- mkdir tmp
|
||||||
- wget -O tmp/qemu-aarch64-static https://github.com/multiarch/qemu-user-static/releases/download/v2.12.0/qemu-aarch64-static
|
- wget -O tmp/qemu-aarch64-static https://github.com/multiarch/qemu-user-static/releases/download/v2.12.0/qemu-aarch64-static
|
||||||
|
|
|
@ -1,10 +1,3 @@
|
||||||
FROM golang:alpine as build
|
|
||||||
|
|
||||||
RUN apk --no-cache add git; \
|
|
||||||
go get github.com/kenshinx/godns; \
|
|
||||||
cd $GOPATH/src/github.com/kenshinx/godns; \
|
|
||||||
go build -o /godns
|
|
||||||
|
|
||||||
FROM alpine:3.7
|
FROM alpine:3.7
|
||||||
|
|
||||||
MAINTAINER Tyler Stuyfzand <tyler@tystuyfzand.com>
|
MAINTAINER Tyler Stuyfzand <tyler@tystuyfzand.com>
|
||||||
|
@ -15,5 +8,5 @@ RUN apk --no-cache add tini
|
||||||
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
||||||
CMD ["godns"]
|
CMD ["godns"]
|
||||||
|
|
||||||
COPY --from=build /godns /usr/local/bin/godns
|
COPY /godns /usr/local/bin/godns
|
||||||
RUN chmod +x /usr/local/bin/godns
|
RUN chmod +x /usr/local/bin/godns
|
||||||
|
|
|
@ -1,12 +1,3 @@
|
||||||
FROM golang:alpine as build
|
|
||||||
|
|
||||||
ENV GOARCH=arm
|
|
||||||
|
|
||||||
RUN apk --no-cache add git; \
|
|
||||||
go get github.com/kenshinx/godns; \
|
|
||||||
cd $GOPATH/src/github.com/kenshinx/godns; \
|
|
||||||
go build -o /godns
|
|
||||||
|
|
||||||
FROM arm32v6/alpine
|
FROM arm32v6/alpine
|
||||||
|
|
||||||
COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
COPY tmp/qemu-arm-static /usr/bin/qemu-arm-static
|
||||||
|
@ -19,5 +10,5 @@ RUN apk --no-cache add tini
|
||||||
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
||||||
CMD ["godns"]
|
CMD ["godns"]
|
||||||
|
|
||||||
COPY --from=build /godns /usr/local/bin/godns
|
COPY /godns-arm /usr/local/bin/godns
|
||||||
RUN chmod +x /usr/local/bin/godns
|
RUN chmod +x /usr/local/bin/godns
|
||||||
|
|
|
@ -1,12 +1,3 @@
|
||||||
FROM golang:alpine as build
|
|
||||||
|
|
||||||
ENV GOARCH=arm64
|
|
||||||
|
|
||||||
RUN apk --no-cache add git; \
|
|
||||||
go get github.com/kenshinx/godns; \
|
|
||||||
cd $GOPATH/src/github.com/kenshinx/godns; \
|
|
||||||
go build -o /godns
|
|
||||||
|
|
||||||
FROM arm64v8/alpine
|
FROM arm64v8/alpine
|
||||||
|
|
||||||
COPY tmp/qemu-aarch64-static /usr/bin/qemu-aarch64-static
|
COPY tmp/qemu-aarch64-static /usr/bin/qemu-aarch64-static
|
||||||
|
@ -19,5 +10,5 @@ RUN apk --no-cache add tini
|
||||||
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
ENTRYPOINT ["/sbin/tini", "-g", "--"]
|
||||||
CMD ["godns"]
|
CMD ["godns"]
|
||||||
|
|
||||||
COPY --from=build /godns /usr/local/bin/godns
|
COPY /godns-arm64 /usr/local/bin/godns
|
||||||
RUN chmod +x /usr/local/bin/godns
|
RUN chmod +x /usr/local/bin/godns
|
||||||
|
|
Loading…
Reference in New Issue