We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66af410 commit 3923130Copy full SHA for 3923130
.github/workflows/ci.yaml
@@ -77,8 +77,8 @@ jobs:
77
78
- name: Put new bin directory into path
79
run: |
80
- echo "/home/runner/cache-bin" >> $GITHUB_PATH
81
- echo "/home/runner/cache-bin/arm_gcc/bin" >> $GITHUB_PATH
+ echo "$HOME/cache-bin" >> $GITHUB_PATH
+ echo "$HOME/cache-bin/arm_gcc/bin" >> $GITHUB_PATH
82
83
- name: Test
84
run: bash ci/script.sh
ci/main/app4/src/main.rs
@@ -15,7 +15,7 @@ fn main() -> ! {
15
// check that DATA is properly initialized
16
if ptr::read_volatile(&DATA) != 1 {
17
// this makes QEMU crash
18
- asm!("BKPT" :::: "volatile");
+ asm!("BKPT");
19
}
20
21
0 commit comments