From 56f99c366950fc6201fcfcf2b4435703e021bf03 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Sat, 9 Dec 2023 13:33:51 +0000 Subject: [PATCH] Build on all machines --- .gitea/workflows/deploy.yaml | 42 +++++++++++++++++++++++++++++++++++- 1 file changed, 41 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 6b42e4f..d258959 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -7,7 +7,47 @@ on: jobs: on-push-deploy_sh-edraft: - runs-on: [custom-runner] + runs-on: [dobby.sh-edraft.de, ubuntu-latest] + container: catthehacker/ubuntu:act-latest + steps: + - name: Setup docker + uses: https://github.com/papodaca/install-docker-action@main + - run: docker -v + + - name: Clone Repository + uses: https://github.com/actions/checkout@v3 + with: + token: ${{ secrets.CI_ACCESS_TOKEN }} + submodules: true + + - name: Build act-runner image + run: | + docker image prune -f + chmod +x build + ./build + + on-push-deploy_keksdose: + runs-on: [ksrv01.keksdose-gaming.de, ubuntu-latest] + container: catthehacker/ubuntu:act-latest + steps: + - name: Setup docker + uses: https://github.com/papodaca/install-docker-action@main + - run: docker -v + + - name: Clone Repository + uses: https://github.com/actions/checkout@v3 + with: + token: ${{ secrets.CI_ACCESS_TOKEN }} + submodules: true + + - name: Build act-runner image + run: | + docker image prune -f + chmod +x build + ./build + + on-push-deploy_area: + runs-on: [vsrv01.area49-battlefield.de, ubuntu-latest] container: catthehacker/ubuntu:act-latest steps: - name: Setup docker