printshopcreator/.gitea/workflows/run_tests.yaml
Thomas e84103ad19
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
Fixes
2025-02-26 11:19:15 +01:00

42 lines
1.8 KiB
YAML

name: Gitea Actions Demo
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Run-Tests-On-Amd64:
runs-on: amd64
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 }}."
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 }}."