Coming back to github runners
This commit is contained in:
parent
5ae322bc71
commit
b62981e61e
|
@ -7,7 +7,7 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: self-hosted
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
@ -18,11 +18,9 @@ jobs:
|
||||||
- name: Installing meson and ninja
|
- name: Installing meson and ninja
|
||||||
run: python3 -m pip install meson ninja
|
run: python3 -m pip install meson ninja
|
||||||
- name: Run meson configuration
|
- name: Run meson configuration
|
||||||
run: meson setup build
|
run: meson setup build -DonlyOpenSource=true
|
||||||
- name: Building project
|
- name: Building project
|
||||||
run: ninja -C build
|
run: ninja -C build
|
||||||
- name: Copying roms
|
|
||||||
run: cp ~/quickerNES/tests/roms/* tests/roms/
|
|
||||||
- name: Running tests
|
- name: Running tests
|
||||||
run: ninja test -C build
|
run: ninja test -C build
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
|
|
Loading…
Reference in New Issue