123
Some checks failed
ci/woodpecker/push/lint Pipeline failed
ci/woodpecker/push/build Pipeline failed
ci/woodpecker/push/test/2 unknown status
ci/woodpecker/push/test/1 unknown status

This commit is contained in:
Stephan Schnabel 2025-06-07 17:05:20 +02:00
parent db4412c876
commit 55e9c2a8ab
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
3 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,7 @@ steps:
build: build:
image: kokuwaio/buildctl:v0.21.0 image: kokuwaio/buildctl:v0.21.0
pull: true
settings: &settings settings: &settings
name: registry.kokuwa.io/buildctl:$CI_PIPELINE_NUMBER name: registry.kokuwa.io/buildctl:$CI_PIPELINE_NUMBER
auth1: {from_secret: AUTH} auth1: {from_secret: AUTH}

View file

@ -1,4 +1,5 @@
FROM docker.io/library/bash:5.2.37@sha256:01a15c6f48f6a3c08431cd77e11567823530b18159889dca3b7309b707beef91 FROM docker.io/library/bash:5.2.37@sha256:01a15c6f48f6a3c08431cd77e11567823530b18159889dca3b7309b707beef91
SHELL ["/usr/local/bin/bash", "-u", "-e", "-o", "pipefail", "-c"]
RUN ARCH=$(uname -m) && \ RUN ARCH=$(uname -m) && \
[[ $ARCH == x86_64 ]] && export SUFFIX=amd64; \ [[ $ARCH == x86_64 ]] && export SUFFIX=amd64; \
[[ $ARCH == aarch64 ]] && export SUFFIX=arm64; \ [[ $ARCH == aarch64 ]] && export SUFFIX=arm64; \

View file

@ -1,4 +1,4 @@
#!/bin/bash #!/usr/local/bin/bash
set -exu; set -exu;
env | sort | grep -v DRONE env | sort | grep -v DRONE