mirror of
https://github.com/marian-nmt/marian.git
synced 2024-11-03 20:13:47 +03:00
Fix Ubuntu GitHub checks (#848)
* Change ubuntu-latest to ubuntu-18.04 * Install gcc/g++
This commit is contained in:
parent
bfa6180033
commit
0223ce90b1
6
.github/workflows/ubuntu.yml
vendored
6
.github/workflows/ubuntu.yml
vendored
@ -13,7 +13,7 @@ jobs:
|
||||
include:
|
||||
# Ubuntu CPU-only build
|
||||
- name: "Ubuntu CPU-only"
|
||||
os: ubuntu-latest
|
||||
os: ubuntu-18.04
|
||||
cuda: ""
|
||||
gcc: 7
|
||||
cpu: true
|
||||
@ -72,7 +72,9 @@ jobs:
|
||||
# No need to install libprotobuf{17,10,9v5} on Ubuntu {20,18,16}.04 because it is installed together with libprotobuf-dev
|
||||
# Boost is no longer pre-installed on GitHub-hosted runners
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get install -y libgoogle-perftools-dev libprotobuf-dev protobuf-compiler libboost-system-dev
|
||||
run: |
|
||||
sudo apt-get install -y libgoogle-perftools-dev libprotobuf-dev protobuf-compiler libboost-system-dev \
|
||||
gcc-${{ matrix.gcc }} g++-${{ matrix.gcc }}
|
||||
|
||||
# https://software.intel.com/content/www/us/en/develop/articles/installing-intel-free-libs-and-python-apt-repo.html
|
||||
- name: Install MKL
|
||||
|
Loading…
Reference in New Issue
Block a user