From b62981e61e1f1bc3c3e4881d531adf173f322bba Mon Sep 17 00:00:00 2001 From: Sergio Martin Date: Sat, 20 Jan 2024 20:54:21 +0100 Subject: [PATCH] Coming back to github runners --- .github/workflows/make.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 07a2d4e..bec9971 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: self-hosted + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -18,11 +18,9 @@ jobs: - name: Installing meson and ninja run: python3 -m pip install meson ninja - name: Run meson configuration - run: meson setup build + run: meson setup build -DonlyOpenSource=true - name: Building project run: ninja -C build - - name: Copying roms - run: cp ~/quickerNES/tests/roms/* tests/roms/ - name: Running tests run: ninja test -C build - uses: actions/upload-artifact@v4