Skip to content

Commit 96dc663

Browse files
committed
CSmith GitHub action: run apt-get update
This is to fix failures to fetch a security update from Ubuntu mirrors. Run `apt-get update` just like we do in other GitHub actions. Also fix the Doxygen job configuration, which was also missing the update step before package installation (but seemingly didn't fail thus far).
1 parent 09dca35 commit 96dc663

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/csmith.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
# user input
1919
DEBIAN_FRONTEND: noninteractive
2020
run: |
21+
sudo apt-get update
2122
sudo apt-get install --no-install-recommends -y build-essential flex bison maven ccache clang-10 clang++-10
2223
sudo apt-get install --no-install-recommends -y csmith libcsmith-dev
2324
make -C src minisat2-download

.github/workflows/doxygen-check.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
# user input
1818
DEBIAN_FRONTEND: noninteractive
1919
run: |
20+
sudo apt-get update
2021
sudo apt-get install --no-install-recommends -yq doxygen graphviz
2122
- name: Run Doxygen
2223
run: ./scripts/run_doxygen.sh

0 commit comments

Comments
 (0)