Fixes
Some checks failed
Gitea Actions Demo / Run-Tests-On-Arm64 (push) Failing after 23s
Gitea Actions Demo / Run-Tests-On-Amd64 (push) Failing after 14m37s

This commit is contained in:
Thomas 2025-02-26 11:19:15 +01:00
parent 13c626708f
commit e84103ad19

View File

@ -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 }}."