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 b88377e commit df6a42eCopy full SHA for df6a42e
.github/workflows/build.yml
@@ -37,7 +37,13 @@ jobs:
37
if: ${{ matrix.target == 'linux' }}
38
run: |
39
apt-get update
40
- apt-get install -y gcc git
+ apt-get install -y software-properties-common
41
+ add-apt-repository -y ppa:ubuntu-toolchain-r/test # For gcc-9 and g++-9
42
+ add-apt-repository -y ppa:git-core/ppa # For git>=2.18.
43
+ apt-get update
44
+ apt-get install -y sudo git gcc-9 g++-9
45
+ update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 100
46
+ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 100
47
48
- name: Install aarch64-linux-gnu
49
if: ${{ matrix.platform == 'linux-arm64' }}
0 commit comments