From 6fd93f48a9b0110d951c42385ad1b423dd6cc551 Mon Sep 17 00:00:00 2001 From: Ryan Date: Mon, 2 Sep 2024 01:31:52 +0200 Subject: [PATCH] test --- .gitea/workflows/on-push.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/on-push.yaml diff --git a/.gitea/workflows/on-push.yaml b/.gitea/workflows/on-push.yaml new file mode 100644 index 0000000..6d642af --- /dev/null +++ b/.gitea/workflows/on-push.yaml @@ -0,0 +1,15 @@ +name: on-push +on: [push] + +jobs: + build-and-test: + runs-on: linux + container: code.helloryan.se/infra/buildenv/cxx-amd64-fedora-40:latest + volumes: + - /src + - /build + steps: + - name: Init + run: bpkg create -d /src cc config.cxx=g++ + - name: Build + run: cd /src && bpkg build $GITHUB_SERVER_URL/$GITHUB_REPOSITORY