fix: actions
This commit is contained in:
parent
654ff622f8
commit
83b6034ac7
1 changed files with 7 additions and 9 deletions
16
.github/workflows/action.yml
vendored
16
.github/workflows/action.yml
vendored
|
@ -1,7 +1,5 @@
|
|||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- push
|
||||
|
||||
jobs:
|
||||
main_test:
|
||||
|
@ -19,24 +17,24 @@ jobs:
|
|||
|
||||
- name: Run test ROM (blargg cpu_instrs)
|
||||
if: always()
|
||||
run: cargo run --bin meowgb-tests --release -- test-roms/blargg/roms/cpu_instrs.gb test -m 100000000 -s meowgb-tests/expected_output/cpu_instrs.bin
|
||||
run: cargo run -p meowgb-tests --release -- test-roms/blargg/roms/cpu_instrs.gb test -m 100000000 -s meowgb-tests/expected_output/cpu_instrs.bin
|
||||
|
||||
- name: Run test ROM (blargg instr_timing)
|
||||
if: always()
|
||||
run: cargo run --bin meowgb-tests --release -- test-roms/blargg/roms/instr_timing.gb test -m 100000000 -s meowgb-tests/expected_output/instr_timing.bin
|
||||
run: cargo run -p meowgb-tests --release -- test-roms/blargg/roms/instr_timing.gb test -m 100000000 -s meowgb-tests/expected_output/instr_timing.bin
|
||||
|
||||
- name: Run test ROM (mealybug-tearoom-tests intr_1_2_timing)
|
||||
if: always()
|
||||
run: cargo run --bin meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/intr_1_2_timing-GS.gb test -m 100000000 -s meowgb-tests/expected_output/intr_1_2_timing-GS.bin
|
||||
run: cargo run -p meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/intr_1_2_timing-GS.gb test -m 100000000 -s meowgb-tests/expected_output/intr_1_2_timing-GS.bin
|
||||
|
||||
- name: Run test ROM (mealybug-tearoom-tests intr_2_0_timing)
|
||||
if: always()
|
||||
run: cargo run --bin meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/intr_2_0_timing.gb test -m 100000000 -s meowgb-tests/expected_output/intr_2_0_timing.bin
|
||||
run: cargo run -p meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/intr_2_0_timing.gb test -m 100000000 -s meowgb-tests/expected_output/intr_2_0_timing.bin
|
||||
|
||||
- name: Run test ROM (mealybug-tearoom-tests stat_lyc_onoff)
|
||||
if: always()
|
||||
run: cargo run --bin meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/stat_lyc_onoff.gb test -m 100000000 -s meowgb-tests/expected_output/stat_lyc_onoff.bin
|
||||
run: cargo run -p meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/stat_lyc_onoff.gb test -m 100000000 -s meowgb-tests/expected_output/stat_lyc_onoff.bin
|
||||
|
||||
- name: Run test ROM (mealybug-tearoom-tests stat_irq_blocking)
|
||||
if: always()
|
||||
run: cargo run --bin meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/stat_irq_blocking.gb test -m 100000000 -s meowgb-tests/expected_output/stat_irq_blocking.bin
|
||||
run: cargo run -p meowgb-tests --release -- test-roms/mealybug-tearoom-tests/roms/stat_irq_blocking.gb test -m 100000000 -s meowgb-tests/expected_output/stat_irq_blocking.bin
|
||||
|
|
Loading…
Reference in a new issue