Skip to content

Commit

Permalink
Install ninja from backports on Ubuntu 16.04. (#2125)
Browse files Browse the repository at this point in the history
  • Loading branch information
karliss authored Apr 2, 2020
1 parent 4f64980 commit 742442d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit 742442d

Please sign in to comment.