From 07938cccc7c5cd960e869214f2607d06978bbb83 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Fri, 6 Feb 2026 13:34:56 -0600 Subject: [PATCH] Build dolphin first while I test. --- .gitea/workflows/build.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 91224d0..70b179c 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -9,6 +9,19 @@ on: - main jobs: + build-dolphin: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v5 + - name: Install dependencies + run: | + apt-get update + apt-get install -y docker.io + - name: Docker test + run: | + ./.ci/dolphin/build-gamecube.sh + run-tests: runs-on: ubuntu-latest steps: @@ -71,17 +84,4 @@ jobs: with: name: dusk-psp path: build/gitea/ - if-no-files-found: error - - build-dolphin: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v5 - - name: Install dependencies - run: | - apt-get update - apt-get install -y docker.io - - name: Docker test - run: | - ./.ci/dolphin/build-gamecube.sh \ No newline at end of file + if-no-files-found: error \ No newline at end of file