Skip to content

Commit

Permalink
CI: Run scripts with predefined shell
Browse files Browse the repository at this point in the history
It would be more portable to specify bash via shebang rather than
arbitrary 'sh' commands.
  • Loading branch information
jserv committed Oct 11, 2023
1 parent 09fd54a commit 20b3a44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Empty file modified .ci/riscv-toolchain-install.sh
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
- uses: actions/checkout@v4
- name: install-dependencies
run: |
sh .ci/riscv-toolchain-install.sh
.ci/riscv-toolchain-install.sh
shell: bash
- name: architectural test
run: |
sh .ci/riscv-tests.sh
.ci/riscv-tests.sh
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install libsdl2-dev libsdl2-mixer-dev
sh .ci/riscv-toolchain-install.sh
.ci/riscv-toolchain-install.sh
shell: bash
- name: default build
run: make
Expand Down

0 comments on commit 20b3a44

Please sign in to comment.