Coming back to github runners

This commit is contained in:
Sergio Martin 2024-01-20 20:54:21 +01:00
parent 5ae322bc71
commit b62981e61e
1 changed files with 2 additions and 4 deletions

View File

@ -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