From 10eb876d3897c0b48b96217686ae561767f9d05d Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Thu, 14 Nov 2024 09:25:34 +0100 Subject: [PATCH] Use Ubuntu for UI tests The UI tests no longer have reproducibility issues, so we can run them on another platform that is less restrained by GitHub Actions capacity. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c87362903..1d47dd0ab 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -190,7 +190,7 @@ jobs: ui: name: Compiler UI - runs-on: macos-13 + runs-on: ubuntu-latest needs: - fmt - lint @@ -218,7 +218,7 @@ jobs: key: cargo-${{ github.job }}-${{ matrix.name }}-${{ hashFiles('**/Cargo.lock') }} - name: Run UI tests - run: cargo run --features=run --bin=test-ui + run: cargo run --features=run,gnustep-1-7 --bin=test-ui - name: Check diff if: ${{ always() }}