From b88441c2aa3a2cb443112960e8698453e32ac3b6 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 20 Oct 2022 00:13:45 +0200 Subject: Added grenade-brothers scripts and jobs --- Makefile | 1 + grenade-brothers/build-image.sh | 67 +++++++++++++++++++++++++++++++++++++++++ grenade-brothers/build.yaml | 29 ++++++++++++++++++ grenade-brothers/deploy.yaml | 21 +++++++++++++ 4 files changed, 118 insertions(+) create mode 100755 grenade-brothers/build-image.sh create mode 100644 grenade-brothers/build.yaml create mode 100644 grenade-brothers/deploy.yaml diff --git a/Makefile b/Makefile index cfee169..765b488 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,7 @@ check: ## make check # Check syntax of eventline jobs .PHONY: run run: ## make run # deploy all jobs evcli deploy-jobs eventline/*.yaml \ + grenade-brothers/*.yaml \ mirror-to-github/*.yaml \ www/*.yaml evcli deploy-jobs -p upgrades upgrades/*.yaml diff --git a/grenade-brothers/build-image.sh b/grenade-brothers/build-image.sh new file mode 100755 index 0000000..a5398a6 --- /dev/null +++ b/grenade-brothers/build-image.sh @@ -0,0 +1,67 @@ +#!/usr/bin/env bash +set -euo pipefail + +WORKDIR="/tmp/${EVENTLINE_JOB_NAME}" + +cleanup() { + rm -rf "${WORKDIR}" +} + +trap cleanup EXIT + +ret=0; buildah images adyxax/alpine &>/dev/null || ret=$? +if [[ "${ret}" != 0 ]]; then + buildah rmi --all + ALPINE_LATEST=$(curl --silent https://dl-cdn.alpinelinux.org/alpine/latest-stable/releases/x86_64/ | + perl -lane '$latest = $1 if $_ =~ /^/; END {print $latest}' + ) + if [ ! -e "./${ALPINE_LATEST}" ]; then + echo "Fetching ${ALPINE_LATEST}..." + curl --silent "https://dl-cdn.alpinelinux.org/alpine/latest-stable/releases/x86_64/${ALPINE_LATEST}" \ + --output "./${ALPINE_LATEST}" + fi + + ctr=$(buildah from scratch) + buildah add "${ctr}" "${ALPINE_LATEST}" / + buildah run "${ctr}" /bin/sh -c 'apk upgrade --no-cache' + buildah run "${ctr}" /bin/sh -c 'apk add --no-cache pcre sqlite-libs' + buildah commit "${ctr}" adyxax/alpine + buildah rm "${ctr}" +fi + +ret=0; buildah images adyxax/zig &>/dev/null || ret=$? +if [[ "${ret}" != 0 ]]; then + zig=$(buildah from adyxax/alpine) + buildah run "${zig}" /bin/sh -c 'echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories' + buildah run "${zig}" /bin/sh -c 'apk upgrade --no-cache' + buildah run "${zig}" /bin/sh -c 'apk add --no-cache zig' + buildah commit "${zig}" adyxax/zig +else + zig=$(buildah from adyxax/zig) +fi + +buildah run -v "${WORKDIR}":/gb "${zig}" /bin/sh -c 'cd /gb; zig build -Drelease-small=true' +buildah rm "${zig}" + +ret=0; buildah images adyxax/wasm4 &>/dev/null || ret=$? +if [[ "${ret}" != 0 ]]; then + wasm4=$(buildah from adyxax/alpine) + buildah run "${wasm4}" /bin/sh -c 'apk add --no-cache nodejs-current npm' + buildah run "${wasm4}" /bin/sh -c 'npm install -g wasm4' + buildah commit "${wasm4}" adyxax/wasm4 +else + wasm4=$(buildah from adyxax/wasm4) +fi + +buildah copy "${wasm4}" "${WORKDIR}/zig-out/lib/cart.wasm" / + +buildah config \ + --author 'Julien Dessaux' \ + --cmd "w4 run --port 80 --no-open --no-qr /cart.wasm" \ + --port 80 \ + "${wasm4}" + +buildah commit "${wasm4}" adyxax/grenade-brothers +buildah rm "${wasm4}" + +trap - EXIT 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" diff --git a/grenade-brothers/deploy.yaml b/grenade-brothers/deploy.yaml new file mode 100644 index 0000000..8a5c62d --- /dev/null +++ b/grenade-brothers/deploy.yaml @@ -0,0 +1,21 @@ +name: "grenade-brothers-deploy" +steps: + - label: git clone + script: + path: "../common/git-clone.sh" + arguments: + - "https://git.adyxax.org/adyxax/grenade-brothers" + - label: make deploy + script: + path: "../common/make.sh" + arguments: + - "deploy" + - label: clean + script: + path: "../common/clean.sh" +runner: + identity: "ssh-myth" + name: "ssh" + parameters: + host: "myth.adyxax.org" + user: "root" -- cgit v1.2.3