diff --git a/.gitea/workflows/run_tests.yaml b/.gitea/workflows/run_tests.yaml index a01cf5e7a..f77bd8bb8 100644 --- a/.gitea/workflows/run_tests.yaml +++ b/.gitea/workflows/run_tests.yaml @@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: [push] jobs: - Explore-Gitea-Actions: + Run-Tests-On-Amd64: runs-on: amd64 steps: - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." @@ -21,3 +21,21 @@ jobs: run: | make docker-compose-build - run: echo "🍏 This job's status is ${{ job.status }}." + Run-Tests-On-Arm64: + runs-on: arm64 + steps: + - run: echo "🎉 The job was automatically triggered by a ${{ gitea.event_name }} event." + - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by Gitea!" + - run: echo "🔎 The name of your branch is ${{ gitea.ref }} and your repository is ${{ gitea.repository }}." + - name: Check out repository code + uses: actions/checkout@v4 + - run: echo "💡 The ${{ gitea.repository }} repository has been cloned to the runner." + - run: echo "🖥️ The workflow is now ready to test your code on the runner." + - name: Init + run: | + make make-init + make docker-compose-init + - name: Build Images + run: | + make docker-compose-build + - run: echo "🍏 This job's status is ${{ job.status }}."