We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d6837 commit 85d8174Copy full SHA for 85d8174
.github/workflows/unit-tests.yaml
@@ -45,7 +45,13 @@ jobs:
45
46
- if: "matrix.os == 'ubuntu-20.04'"
47
name: "Install gcc-10 (for c++20)"
48
- run: "sudo ${{github.workspace}}/tools/scripts/install-gcc-10.sh"
+ run: |-
49
+ apt-get update DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \
50
+ g++-10 \
51
+ gcc-10
52
+ ln -s -f /usr/bin/gcc-10 /usr/bin/cc
53
+ ln -s -f /usr/bin/g++-10 /usr/bin/c++
54
+ ln -s -f /usr/bin/cpp-10 /usr/bin/cpp
55
56
- name: "Log tool versions"
57
run: |-
0 commit comments