Privileged
continuous-integration/drone/push Build is failing Details

This commit is contained in:
DutchEllie 2022-05-11 14:33:07 +02:00
parent 91e95a69e3
commit 576f0e6dde
Signed by: DutchEllie
SSH Key Fingerprint: SHA256:dKq6ZSgN5E3Viqrw/+xAdf2VdR6hdRGNyrYqXXwfjTY
1 changed files with 9 additions and 3 deletions

View File

@ -1,6 +1,6 @@
kind: pipeline
type: kubernetes
name: pepebot_build_x86
name: pepebot_build_amd64
platform:
os: linux
arch: amd64
@ -18,6 +18,7 @@ steps:
- go build -a -installsuffix cgo -o /build/app ./discord
- name: build-publish-image
image: plugins/docker
privileged: true
volumes:
- name: build
path: /build
@ -40,7 +41,7 @@ volumes:
---
kind: pipeline
type: kubernetes
name: pepebot_service_build_x86
name: pepebot_service_build_amd64
platform:
os: linux
arch: amd64
@ -59,6 +60,7 @@ steps:
- go build -a -installsuffix cgo -o /build/app .
- name: build-service
image: plugins/docker
privileged: true
volumes:
- name: build
path: /build
@ -100,6 +102,7 @@ steps:
- go build -a -installsuffix cgo -o /build/app ./discord
- name: build-publish-image
image: plugins/docker
privileged: true
volumes:
- name: build
path: /build
@ -141,6 +144,7 @@ steps:
- go build -a -installsuffix cgo -o /build/app .
- name: build-service
image: plugins/docker
privileged: true
volumes:
- name: build
path: /build
@ -194,4 +198,6 @@ steps:
depends_on:
- pepebot_build_arm64
- pepebot_build_x86
- pepebot_build_amd64
- pepebot_service_build_arm64
- pepebot_service_build_amd64