Skip to content

Commit fa1753c

Browse files
committed
CI: Run scripts with predefined shell
It would be more portable to specify bash via shebang rather than arbitrary 'sh' commands.
1 parent 81013d0 commit fa1753c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.ci/riscv-toolchain-install.sh

100644100755
File mode changed.

.github/workflows/compliance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
- uses: actions/checkout@v4
1010
- name: install-dependencies
1111
run: |
12-
sh .ci/riscv-toolchain-install.sh
12+
.ci/riscv-toolchain-install.sh
1313
shell: bash
1414
- name: architectural test
1515
run: |
16-
sh .ci/riscv-tests.sh
16+
.ci/riscv-tests.sh
1717
shell: bash

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
run: |
1212
sudo apt-get update
1313
sudo apt-get install libsdl2-dev libsdl2-mixer-dev
14-
sh .ci/riscv-toolchain-install.sh
14+
.ci/riscv-toolchain-install.sh
1515
shell: bash
1616
- name: default build
1717
run: make

0 commit comments

Comments
 (0)