We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74c39dd commit b23fc74Copy full SHA for b23fc74
.github/workflows/sanitizers.yml
@@ -99,11 +99,20 @@ jobs:
99
100
- name: Build and run beep example with sanitizer
101
run: |
102
- cargo +nightly run \
103
- -Zbuild-std \
104
- --target ${{ matrix.target }} \
105
- --example beep \
106
- --verbose
+ if [ "$RUNNER_OS" == "Linux" ]; then
+ cargo +nightly run \
+ -Zbuild-std \
+ --target ${{ matrix.target }} \
+ --example beep \
107
+ --verbose \
108
+ -- --device "alsa:null"
109
+ else
110
111
112
113
114
+ --verbose
115
+ fi
116
117
- name: Upload sanitizer logs
118
if: failure()
0 commit comments