Skip to content

Commit

Permalink
In line with latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sithtoast authored Jan 15, 2024
1 parent d72a9ff commit 8488f83
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:

runs-on: ubuntu-latest
env:
GCC_VER: 10.3-2021.07
GCC_PACKAGE_NAME: gcc-arm-$GCC_VER-x86_64-arm-none-linux-gnueabihf
GCC_DIR: $GITHUB_WORKSPACE/$GCC_PACKAGE_NAME
CC: "$GITHUB_WORKSPACE/bin/arm-none-gnueabihf-gcc"

steps:
Expand All @@ -19,9 +22,9 @@ jobs:
run: source setup_default_toolchain.sh
- name: env PATH
run:
echo "$GITHUB_WORKSPACE/gcc-arm-10.2-2020.11-x86_64-arm-none-linux-gnueabihf/bin" >> $GITHUB_PATH
echo "PATH="$GCC_DIR/bin" >> $GITHUB_PATH
env:
CC: "$GITHUB_WORKSPACE/gcc-arm-10.2-2020.11-x86_64-arm-none-linux-gnueabihf/bin/arm-none-gnueabihf-gcc"
CC: $GCC_DIR/bin/arm-none-gnueabihf-gcc"
- name: make
run: make
- name: 'Upload Artifact'
Expand Down

0 comments on commit 8488f83

Please sign in to comment.