okay halfway there
continuous-integration/drone/push Build is passing Details

This commit is contained in:
DutchEllie 2022-05-11 15:06:00 +02:00
parent fd624c6440
commit cb9ddd27bb
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
1 changed files with 9 additions and 9 deletions

View File

@ -51,19 +51,19 @@ steps:
image: golang:1.17-alpine
volumes:
- name: build
path: /drone/src/pepeservice/build
path: /drone/src/build
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- cd ./pepeservice
- go build -a -installsuffix cgo -o ./build/app .
- go build -a -installsuffix cgo -o ../build/app .
- name: build-service
image: plugins/docker
privileged: true
volumes:
- name: build
path: /drone/src/pepeservice/build
path: /drone/src/build
settings:
cache_from:
- "dutchellie/pepebot_service:latest"
@ -94,18 +94,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
- 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"
@ -135,19 +135,19 @@ steps:
image: golang:1.17-alpine
volumes:
- name: build
path: /build
path: /drone/src/build
environment:
CGO_ENABLED: 0
GOOS: linux
commands:
- cd ./pepeservice
- go build -a -installsuffix cgo -o /build/app .
- go build -a -installsuffix cgo -o ../build/app .
- name: build-service
image: plugins/docker
privileged: true
volumes:
- name: build
path: /build
path: /drone/src/build
settings:
cache_from:
- "dutchellie/pepebot_service:latest"