mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-18 18:38:51 +00:00
Run apt update to refresh package list. (#2291)
It seems that github action VMs have cached bad package list.
This commit is contained in:
parent
e5d7bd660a
commit
313abbf50f
6
.github/workflows/ccpp.yml
vendored
6
.github/workflows/ccpp.yml
vendored
@ -28,6 +28,12 @@ jobs:
|
||||
- name: apt dependencies
|
||||
if: contains(matrix.os, 'ubuntu')
|
||||
run: |
|
||||
if [[ "${{ matrix.os }}" = "ubuntu-18.04" ]]
|
||||
then
|
||||
# github action VMs currently have broken package list causing install to fail, run update to refresh it
|
||||
# remove this once fixed
|
||||
sudo apt-get update
|
||||
fi
|
||||
sudo apt-get install libgraphviz-dev mesa-common-dev
|
||||
if [[ "${{ matrix.os }}" = "ubuntu-16.04" ]]
|
||||
then
|
||||
|
Loading…
Reference in New Issue
Block a user