ci : fix focal build

This commit is contained in:
Georgi Gerganov 2023-10-30 15:58:40 +02:00
parent a6aba2c85c
commit 57c4296cf0
No known key found for this signature in database
GPG key ID: 449E073F9DC10735

View file

@ -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: