Skip to content

Commit 3923130

Browse files
committed
CI: Fix nightly build
1 parent 66af410 commit 3923130

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ jobs:
7777
7878
- name: Put new bin directory into path
7979
run: |
80-
echo "/home/runner/cache-bin" >> $GITHUB_PATH
81-
echo "/home/runner/cache-bin/arm_gcc/bin" >> $GITHUB_PATH
80+
echo "$HOME/cache-bin" >> $GITHUB_PATH
81+
echo "$HOME/cache-bin/arm_gcc/bin" >> $GITHUB_PATH
8282
8383
- name: Test
8484
run: bash ci/script.sh

ci/main/app4/src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ fn main() -> ! {
1515
// check that DATA is properly initialized
1616
if ptr::read_volatile(&DATA) != 1 {
1717
// this makes QEMU crash
18-
asm!("BKPT" :::: "volatile");
18+
asm!("BKPT");
1919
}
2020
}
2121

0 commit comments

Comments
 (0)