From 28a96a2cf65d34abc7c7a56f9e65a49e3b8b7ec3 Mon Sep 17 00:00:00 2001 From: Quinn Date: Fri, 6 Jun 2025 19:30:01 +0200 Subject: [PATCH] compiling from scratch is faster than dealing with artifacts --- .github/workflows/ci.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f4e7b0b..908e95b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -55,12 +55,8 @@ jobs: # compile - name: compile ${{matrix.march}}-${{matrix.kernel}} run: make compile MARCH=${{matrix.march}} KERNEL=${{matrix.kernel}} CC=${{matrix.cc}} -j - - uses: actions/upload-artifact@v4 - with: - name: ${{matrix.march}}-${{matrix.kernel}}-rel - path: obj/ test: - needs: compile + needs: setup-vcpkg runs-on: ubuntu-latest container: ghcr.io/thepigeongenerator/mcaselector-lite:latest strategy: @@ -76,9 +72,5 @@ jobs: path: ${{env.VCPKG_ROOT}} key: vcpkg-${{runner.os}} - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4 - with: - name: ${{matrix.march}}-${{matrix.kernel}}-rel - path: obj/ - name: execute tests for ${{matrix.march}}-${{matrix.kernel}} run: make DEBUG=test run MARCH=${{matrix.march}} KERNEL=${{matrix.kernel}} CC=${{matrix.cc}} -j