-
Notifications
You must be signed in to change notification settings - Fork 708
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the package repositories before installing new software. Without this CI will run into occasinal 404s when downloading qemu. Signed-off-by: Lorenz Bauer <[email protected]>
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ jobs: | |
|
||
- run: go install gotest.tools/[email protected] | ||
- run: sudo pip3 install https://github.com/amluto/virtme/archive/beb85146cd91de37ae455eccb6ab67c393e6e290.zip | ||
- run: sudo apt-get install -y --no-install-recommends qemu-system-x86 | ||
- run: sudo apt-get update && sudo apt-get install -y --no-install-recommends qemu-system-x86 | ||
|
||
- name: Test | ||
run: gotestsum --raw-command --ignore-non-json-output-lines --junitfile junit.xml -- ./run-tests.sh $CI_MAX_KERNEL_VERSION -short -count 1 -json ./... | ||
|
@@ -117,7 +117,7 @@ jobs: | |
|
||
- run: go install gotest.tools/[email protected] | ||
- run: sudo pip3 install https://github.com/amluto/virtme/archive/beb85146cd91de37ae455eccb6ab67c393e6e290.zip | ||
- run: sudo apt-get install -y --no-install-recommends qemu-system-x86 | ||
- run: sudo apt-get update && sudo apt-get install -y --no-install-recommends qemu-system-x86 | ||
|
||
- name: Test | ||
run: gotestsum --raw-command --ignore-non-json-output-lines --junitfile junit.xml -- ./run-tests.sh $KERNEL_VERSION -short -count 1 -json ./... | ||
|