Skip to content

Commit

Permalink
Fixed path in GDB build
Browse files Browse the repository at this point in the history
  • Loading branch information
takeshixx committed Apr 19, 2021
1 parent 885534e commit 782855b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build-gdb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh

- name: Install build compiler
run: $GITHUB_WORKSPACE/02_install_build_compiler.sh x86_64
run: $GITHUB_WORKSPACE/build/02_install_build_compiler.sh x86_64

- name: Install dependencies workaround
run: $GITHUB_WORKSPACE/02_install_build_compiler.sh i686
run: $GITHUB_WORKSPACE/build/02_install_build_compiler.sh i686

- name: Build GDB
id: build_gdb
Expand All @@ -44,7 +44,7 @@ jobs:
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh

- name: Install build compiler
run: $GITHUB_WORKSPACE/02_install_build_compiler.sh x86_64
run: $GITHUB_WORKSPACE/build/02_install_build_compiler.sh x86_64

- name: Build GDB
id: build_gdb
Expand All @@ -71,10 +71,10 @@ jobs:
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh

- name: Install build compiler
run: $GITHUB_WORKSPACE/02_install_build_compiler.sh x86_64
run: $GITHUB_WORKSPACE/build/02_install_build_compiler.sh x86_64

- name: Install dependencies workaround
run: $GITHUB_WORKSPACE/02_install_build_compiler.sh arm
run: $GITHUB_WORKSPACE/build/02_install_build_compiler.sh arm

- name: Build gdb
id: build_gdb
Expand All @@ -101,10 +101,10 @@ jobs:
run: sudo apk update && sudo apk add bash && sudo bash build/install_deps_alpine.sh

- name: Install build compiler
run: $GITHUB_WORKSPACE/02_install_build_compiler.sh x86_64
run: $GITHUB_WORKSPACE/build/02_install_build_compiler.sh x86_64

- name: Install dependencies workaround
run: $GITHUB_WORKSPACE/02_install_build_compiler.sh aarch64
run: $GITHUB_WORKSPACE/build/02_install_build_compiler.sh aarch64

- name: Patch headers
run: |
Expand Down

0 comments on commit 782855b

Please sign in to comment.