Skip to content

Commit

Permalink
Make tests executable?
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Apr 11, 2024
1 parent db27edb commit 5dc6383
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: Run build info checks
run: ./tests/run_build_info_checks.sh

Expand All @@ -53,6 +56,9 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: Run logic checks
run: ./tests/run_logic_checks.sh

Expand All @@ -71,6 +77,12 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: test
run: tree build/

- name: Run instruction checks
run: ./tests/run_instruction_checks.sh

Expand All @@ -89,6 +101,9 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: Run instruction check - jalr
run: ./build/tests/c/instruction_checks/jalr.elf

Expand All @@ -107,6 +122,9 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: Run instruction check - plain_disassembly
run: ./build/tests/c/instruction_checks/plain_disassembly.elf

Expand All @@ -125,6 +143,9 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: Run instruction check - r3000gte_disasm
run: ./build/tests/c/instruction_checks/r3000gte_disasm.elf

Expand All @@ -143,6 +164,9 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: Run instruction check - r5900_trunc_cvt
run: ./build/tests/c/instruction_checks/r5900_trunc_cvt.elf

Expand All @@ -161,5 +185,8 @@ jobs:
name: artifact
path: build/

- name: Make tests executable
run: chmod --recursive +x build/

- name: Run instruction check - r5900_vcallms
run: ./build/tests/c/instruction_checks/r5900_vcallms.elf

0 comments on commit 5dc6383

Please sign in to comment.