Skip to content

Commit 094e064

Browse files
committed
fix
1 parent 0a53cdd commit 094e064

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

.github/build/install_compiler.sh

100644100755
File mode changed.

.github/build/install_deps.sh

100644100755
File mode changed.

.github/build/lib.sh

100644100755
File mode changed.

.github/targets/build_gdb.sh

100644100755
File mode changed.

.github/workflows/build_gdb.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
id: build_gdb
2828
run: |
2929
export PATH="$PATH:/i686-linux-musl-cross/bin"
30-
sudo bash .github/targets/build_gdb.sh x86
30+
env
31+
ls .github
32+
ls .github/targets
33+
.github/targets/build_gdb.sh x86
3134
3235
- name: Upload artifacts
3336
uses: actions/upload-artifact@v2
@@ -47,7 +50,7 @@ jobs:
4750
run: sudo apk update && sudo apk add bash && sudo bash .github/build/install_deps.sh
4851

4952
- name: Install build compiler
50-
run: sudo bash .github/build/install_compiler.sh x86_64
53+
run: .github/build/install_compiler.sh x86_64
5154

5255
- name: Build gdb
5356
id: build_gdb
@@ -72,7 +75,7 @@ jobs:
7275
run: sudo apk update && sudo apk add bash && sudo bash .github/build/install_deps.sh
7376

7477
- name: Install build compiler
75-
run: sudo bash .github/build/install_compiler.sh x86_64
78+
run: sudo .github/build/install_compiler.sh x86_64
7679

7780
- name: Install dependencies workaround
7881
run: sudo bash .github/build/install_compiler.sh arm

0 commit comments

Comments
 (0)