Skip to content

Commit

Permalink
CI: fix apt install
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Jan 6, 2025
1 parent 9326a20 commit 45a30e4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ml-dsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
with:
release: 13.2.Rel1
- name: Install qemu-system
run: sudo apt-get install -y qemu-system
run: |
sudo apt-get update
sudo apt-get install -y qemu-system
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Test (mps2-an500)
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ml-kem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
with:
release: 13.2.Rel1
- name: Install qemu-system
run: sudo apt-get install -y qemu-system
run: |
sudo apt-get update
sudo apt-get install -y qemu-system
- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Test (mps2-an500)
Expand Down

0 comments on commit 45a30e4

Please sign in to comment.