ci : fix focal build
This commit is contained in:
parent
a6aba2c85c
commit
57c4296cf0
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
|
@ -33,17 +33,17 @@ jobs:
|
||||||
id: depends
|
id: depends
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install build-essential gcc-8
|
sudo apt-get install build-essential gcc-8 g++-8
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
id: make_build
|
id: make_build
|
||||||
run: |
|
run: |
|
||||||
CC=gcc-8 make -j $(nproc)
|
CC=gcc-8 CXX=g++-8 make -j $(nproc)
|
||||||
|
|
||||||
- name: Test
|
- name: Test
|
||||||
id: make_test
|
id: make_test
|
||||||
run: |
|
run: |
|
||||||
CC=gcc-8 make tests -j $(nproc)
|
CC=gcc-8 CXX=g++-8 make tests -j $(nproc)
|
||||||
make test -j $(nproc)
|
make test -j $(nproc)
|
||||||
|
|
||||||
ubuntu-latest-cmake:
|
ubuntu-latest-cmake:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue