File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -175,12 +175,12 @@ jobs:
175175 sudo apt-get --purge remove postgresql postgresql-doc postgresql-common postgresql-client-common
176176 sudo apt-get -y install postgresql-all
177177
178- - name : Install g++-13
179- if : startsWith(matrix.compiler.cxx, 'g++') && matrix.compiler.ver == 13
178+ - name : Install g++
179+ if : startsWith(matrix.compiler.cxx, 'g++') && ( matrix.compiler.ver == 13 || matrix.compiler.ver == 9)
180180 run : |
181181 sudo add-apt-repository ppa:ubuntu-toolchain-r/test
182182 sudo apt-get install g++-${{ matrix.compiler.ver }}
183- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13
183+ sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.compiler.ver }} ${{ matrix.compiler.ver }}
184184
185185 - name : Install Clang
186186 if : startsWith(matrix.compiler.cxx, 'clang') && matrix.compiler.ver < 13
You can’t perform that action at this time.
0 commit comments