Skip to content

Commit a358cc0

Browse files
authored
Merge pull request #2127 from riscv-software-src/arrv-sc/apt-update
ci: update apt repo
2 parents 217cbc5 + 85a2042 commit a358cc0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
fetch-depth: 0
2727

2828
- name: Install Dependencies
29-
run: sudo xargs apt-get install -y < .github/workflows/apt-packages.txt
29+
run: |
30+
sudo apt-get update
31+
sudo xargs apt-get install -y < .github/workflows/apt-packages.txt
3032
3133
- run: |
3234
for commit in $(git rev-list origin/master..HEAD | tac); do

.github/workflows/debug-smoke.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919

2020
- name: Install Dependencies
2121
run: |
22+
sudo apt-get update
2223
sudo xargs apt-get install -y < .github/workflows/apt-packages.txt
2324
2425
- name: Download OpenOCD

0 commit comments

Comments
 (0)