diff options
author | Julien Dessaux | 2022-10-20 00:13:45 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-10-20 00:13:45 +0200 |
commit | b88441c2aa3a2cb443112960e8698453e32ac3b6 (patch) | |
tree | 7e174dfb9c0895575d69edd8e06c61b523aec429 /grenade-brothers/build.yaml | |
parent | Added simple system upgrade scripts (diff) | |
download | ev-scripts-b88441c2aa3a2cb443112960e8698453e32ac3b6.tar.gz ev-scripts-b88441c2aa3a2cb443112960e8698453e32ac3b6.tar.bz2 ev-scripts-b88441c2aa3a2cb443112960e8698453e32ac3b6.zip |
Added grenade-brothers scripts and jobs
Diffstat (limited to '')
-rw-r--r-- | grenade-brothers/build.yaml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/grenade-brothers/build.yaml b/grenade-brothers/build.yaml new file mode 100644 index 0000000..37ee8c3 --- /dev/null +++ b/grenade-brothers/build.yaml @@ -0,0 +1,29 @@ +name: "grenade-brothers-build" +steps: + - label: buildah login + script: + path: "../common/buildah-login.sh" + - label: git clone + script: + path: "../common/git-clone.sh" + arguments: + - "https://git.adyxax.org/adyxax/grenade-brothers" + - label: build image + script: + path: "build-image.sh" + - label: make push + script: + path: "../common/make.sh" + arguments: + - "push" + - label: clean + script: + path: "../common/clean.sh" +identities: + - quay-io +runner: + identity: "ssh-myth" + name: "ssh" + parameters: + host: "myth.adyxax.org" + user: "root" |