Skip to content

Commit

Permalink
update gcc cache on linux
Browse files Browse the repository at this point in the history
  • Loading branch information
admercs committed May 10, 2024
1 parent 311a2ae commit a5227c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
id: gcc-cache
uses: actions/cache@v4
with:
path: "./external/gcc/gcc-${GCC_VERSION}"
key: "${{runner.os}}-gcc-${GCC_VERSION}"
path: "./external/gcc/gcc-${{env.GCC_VERSION}}"
key: "${{runner.os}}-gcc-${{env.GCC_VERSION}}"

- name: "Build GCC from source"
if: ${{steps.gcc-cache.outputs.cache-hit}} != 'true'
shell: bash
run: bash ./scripts/build_gcc.sh --version "$GCC_VERSION"
run: bash ./scripts/build_gcc.sh --version ${{env.GCC_VERSION}}

- name: "Install AutonomySim Dependencies"
shell: bash
Expand Down

0 comments on commit a5227c9

Please sign in to comment.