Maybe this?
continuous-integration/drone/push Build is failing Details

This commit is contained in:
DutchEllie 2022-05-11 15:01:54 +02:00
parent 77530bac0b
commit fd624c6440
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
3 changed files with 8 additions and 16 deletions

View File

@ -10,19 +10,18 @@ steps:
image: golang:1.16.4-alpine
volumes:
- name: build
path: /build
path: /drone/src/build
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- go build -a -installsuffix cgo -o /build/app ./discord
- ls /build
- go build -a -installsuffix cgo -o ./build/app ./discord
- name: build-publish-image
image: plugins/docker
privileged: true
volumes:
- name: build
path: /build
path: /drone/src/build
settings:
cache_from:
- "dutchellie/pepebot:latest"
@ -52,20 +51,19 @@ steps:
image: golang:1.17-alpine
volumes:
- name: build
path: /build
path: /drone/src/pepeservice/build
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- cd ./pepeservice
- go build -a -installsuffix cgo -o /build/app .
- ls /build
- go build -a -installsuffix cgo -o ./build/app .
- name: build-service
image: plugins/docker
privileged: true
volumes:
- name: build
path: /build
path: /drone/src/pepeservice/build
settings:
cache_from:
- "dutchellie/pepebot_service:latest"

View File

@ -8,9 +8,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /build
RUN ls
RUN ls /build
COPY . /root/
COPY ./build/app /root
WORKDIR /root
CMD ["./app"]

View File

@ -9,9 +9,6 @@
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /build
RUN ls
RUN ls /build
COPY . /root/
COPY ./build/app /root
WORKDIR /root
CMD ["./app"]