diff options
| author | Alexander Larsson <alexander.larsson@gmail.com> | 2020-08-24 08:17:41 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-24 08:17:41 +0200 |
| commit | 79028794eef90305c3b58931c5721edf5638b04a (patch) | |
| tree | dbb1a4f2dc28cd4984bcab40186fccf4b6c409bb | |
| parent | 4401862ac55afc3fe496a2056f2c6c15b2d98678 (diff) | |
| download | flatpak-revert-3811-ci-parallel-check.tar.gz | |
Revert "CI: Run make check in parallel (-j NCPU)"revert-3811-ci-parallel-check
This reverts commit 4401862ac55afc3fe496a2056f2c6c15b2d98678.
| -rw-r--r-- | .github/workflows/check.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 64884a08..74daa4b9 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -64,7 +64,8 @@ jobs: - name: Build flatpak run: make -C _build -j $(getconf _NPROCESSORS_ONLN) - name: Run tests - run: make -C _build check -j $(getconf _NPROCESSORS_ONLN) + # TODO: Build with -j (currently ends up with hangs in the tests) + run: make -C _build check env: ASAN_OPTIONS: detect_leaks=0 # Right now we're not fully clean, but this gets us use-after-free etc - name: Collect overall test logs on failure |
