We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fad8cbd commit 2d6d531Copy full SHA for 2d6d531
.github/workflows/main.yml
@@ -49,5 +49,11 @@ jobs:
49
- name: Build rustwide
50
run: cargo build --all ${{ matrix.cargo_flags }}
51
52
+ # Having swap enabled causes problems with the OOM detector, so let's
53
+ # disable all swapfiles before running the build.
54
+ - name: Disable swap on Linux
55
+ run: sudo swapoff -a
56
+ if: matrix.os == 'ubuntu-latest'
57
+
58
- name: Test rustwide
59
run: cargo test --all ${{ matrix.cargo_flags }} -- ${{ matrix.test_flags }}
0 commit comments