From 782855bf2bff39b653742779764f94d31bba9542 Mon Sep 17 00:00:00 2001 From: takeshix Date: Mon, 19 Apr 2021 13:39:33 +0200 Subject: [PATCH] Fixed path in GDB build --- .github/workflows/build-gdb.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build-gdb.yml b/.github/workflows/build-gdb.yml index d6cc2c5..a9af073 100644 --- a/.github/workflows/build-gdb.yml +++ b/.github/workflows/build-gdb.yml @@ -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 @@ -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 @@ -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 @@ -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: |