Browse Source
Merge pull request #2127 from riscv-software-src/arrv-sc/apt-update
ci: update apt repo
pull/2130/head
Andrew Waterman
5 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
1 deletions
-
.github/workflows/continuous-integration.yml
-
.github/workflows/debug-smoke.yml
|
|
|
@ -26,7 +26,9 @@ jobs: |
|
|
|
fetch-depth: 0 |
|
|
|
|
|
|
|
- name: Install Dependencies |
|
|
|
run: sudo xargs apt-get install -y < .github/workflows/apt-packages.txt |
|
|
|
run: | |
|
|
|
sudo apt-get update |
|
|
|
sudo xargs apt-get install -y < .github/workflows/apt-packages.txt |
|
|
|
|
|
|
|
- run: | |
|
|
|
for commit in $(git rev-list origin/master..HEAD | tac); do |
|
|
|
|
|
|
|
@ -19,6 +19,7 @@ jobs: |
|
|
|
|
|
|
|
- name: Install Dependencies |
|
|
|
run: | |
|
|
|
sudo apt-get update |
|
|
|
sudo xargs apt-get install -y < .github/workflows/apt-packages.txt |
|
|
|
|
|
|
|
- name: Download OpenOCD |
|
|
|
|