Skip to content

Commit

Permalink
CI : Fix the failing multinode system tests.
Browse files Browse the repository at this point in the history
Update the apt cache before installing dependencies.

Signed-off-by: Numan Siddique <numans@ovn.org>
  • Loading branch information
numansiddique committed May 15, 2023
1 parent c3d328d commit 823c296
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ovn-fake-multinode-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ jobs:

steps:
- name: install required dependencies
run: sudo apt install -y ${{ env.dependencies }}
run: |
sudo apt update
sudo apt install -y ${{ env.dependencies }}
- name: Free up disk space
run: sudo eatmydata apt-get remove --auto-remove -y aspnetcore-* dotnet-* libmono-* mono-* msbuild php-* php7* ghc-* zulu-*
Expand Down

0 comments on commit 823c296

Please sign in to comment.