Skip to content

Commit

Permalink
Inline bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill-hbrhbr committed Feb 5, 2025
1 parent e7d6837 commit 85d8174
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,13 @@ jobs:

- if: "matrix.os == 'ubuntu-20.04'"
name: "Install gcc-10 (for c++20)"
run: "sudo ${{github.workspace}}/tools/scripts/install-gcc-10.sh"
run: |-
apt-get update DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
g++-10 \
gcc-10
ln -s -f /usr/bin/gcc-10 /usr/bin/cc
ln -s -f /usr/bin/g++-10 /usr/bin/c++
ln -s -f /usr/bin/cpp-10 /usr/bin/cpp
- name: "Log tool versions"
run: |-
Expand Down

0 comments on commit 85d8174

Please sign in to comment.