install old g++

This commit is contained in:
Michael Davidsaver
2021-02-10 08:58:21 -08:00
parent 495f8622cd
commit 3ff483a1bb

View File

@@ -66,9 +66,12 @@ jobs:
- uses: actions/checkout@v2
- name: "apt-get install ${{ matrix.cmp }}"
run: |
export GCC_NAME="${{ matrix.cmp }}"
sudo apt-get update
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get -y install ${{ matrix.cmp }}
sudo apt-get update
sudo apt-get -y install g++-${GCC_NAME#gcc-}
- name: Prepare and compile dependencies
run: python cue.py prepare
- name: Build main module (example app)