Skip to content

Commit

Permalink
CI: run apt update first
Browse files Browse the repository at this point in the history
(cherry picked from commit 3297483)
  • Loading branch information
kmilos authored and neheb committed Feb 10, 2025
1 parent a5899b6 commit f2c665e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/on_PR_linux_special_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ jobs:

- name: Install dependencies
run: |
sudo apt install -y valgrind ninja-build
sudo eatmydata apt-get -y update
sudo eatmydata apt-get -y install valgrind ninja-build
python3 -m pip install conan==1.* lxml
- name: Conan common config
Expand Down Expand Up @@ -159,7 +160,8 @@ jobs:

- name: Install dependencies
run: |
sudo apt install -y valgrind doxygen graphviz gettext ninja-build
sudo eatmydata apt-get -y update
sudo eatmydata apt-get -y install valgrind doxygen graphviz gettext ninja-build
python3 -m pip install conan==1.* lxml
- name: Conan common config
Expand Down

0 comments on commit f2c665e

Please sign in to comment.