mirror of
https://github.com/rizinorg/cutter.git
synced 2025-02-20 13:46:06 +00:00
Install ninja from backports on Ubuntu 16.04. (#2125)
This commit is contained in:
parent
4f64980834
commit
742442d64a
9
.github/workflows/ccpp.yml
vendored
9
.github/workflows/ccpp.yml
vendored
@ -26,7 +26,14 @@ jobs:
|
||||
submodules: true # 'recursive' 'true' or 'false'
|
||||
- name: apt dependencies
|
||||
if: contains(matrix.os, 'ubuntu')
|
||||
run: sudo apt-get install ninja-build libgraphviz-dev
|
||||
run: |
|
||||
sudo apt-get install libgraphviz-dev
|
||||
if [[ "${{ matrix.os }}" = "ubuntu-16.04" ]]
|
||||
then
|
||||
sudo apt-get install ninja-build/xenial-backports
|
||||
else
|
||||
sudo apt-get install ninja-build
|
||||
fi
|
||||
- name: homebrew dependencies
|
||||
if: contains(matrix.os, 'macos')
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user