Skip to content

Commit

Permalink
run apt-get update before installing dependencies for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbo committed Apr 21, 2024
1 parent 0745d20 commit c4c5f16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-linux-i686.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Install Dependencies
run: |
sudo apt-get -y install cmake make gcc-multilib g++-multilib python3
sudo apt-get update && sudo apt-get -y install cmake make gcc-multilib g++-multilib python3
- name: Configure and Build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

- name: Install Dependencies
run: |
sudo apt-get -y install cmake make gcc-multilib g++-multilib python3
sudo apt-get update && sudo apt-get -y install cmake make gcc-multilib g++-multilib python3
- name: Configure and Build
run: |
Expand Down

0 comments on commit c4c5f16

Please sign in to comment.