diff --git a/.github/workflows/build-mos.yml b/.github/workflows/build-mos.yml index 7b770ac5..ca530309 100644 --- a/.github/workflows/build-mos.yml +++ b/.github/workflows/build-mos.yml @@ -45,7 +45,7 @@ jobs: run: | cmake \ -DCMAKE_BUILD_TYPE=${{matrix.build_type}} \ - -DMOS_CONFIG=${{matrix.config.arch}}-debug \ + -DMOS_CONFIG=${{matrix.config.arch}}-default \ -DMOS_ARCH=${{matrix.config.arch}} \ -B build \ -G Ninja @@ -57,17 +57,17 @@ jobs: cd build ninja mos_uefi_partition - - name: Test - run: | - cd build - ../scripts/run-tests.py --arch ${{matrix.config.arch}} --kernelspace-tests -t 600 -w 120 - - name: Upload Bootable Artifact uses: actions/upload-artifact@v4.3.5 with: name: MOS-${{matrix.build_type}}-${{matrix.config.arch}} path: build/uefi-files + - name: Test + run: | + cd build + ../scripts/run-tests.py --arch ${{matrix.config.arch}} --kernelspace-tests -t 600 -w 120 + - name: Upload Test Results if: always() uses: actions/upload-artifact@v4.3.5