diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-05-30 18:57:57 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-05-30 18:57:57 +0200 |
commit | 4e9f6b97432de675d567c2019cadb165559ab0f5 (patch) | |
tree | d3363104fdb0d5ae2b4cbfb9489d9d17d320ae9d /.github | |
parent | 8b9ae5895573f81f9b5eb5ce6a87bbff930fa149 (diff) | |
download | sciteco-4e9f6b97432de675d567c2019cadb165559ab0f5.tar.gz |
continuous-integration.yml: start xvfb with automatic server number assignment to fix "Xvfb failed to start" (hopefully)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/continuous-integration.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index ca56e41..9a76f8a 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -41,15 +41,15 @@ jobs: # NOTE: xvfb-run emulates an XServer and is required when building # Gtk versions (since SciTECO calls itself during the build). - - run: xvfb-run make - - run: sudo xvfb-run make install + - run: xvfb-run -a make + - run: sudo xvfb-run -a make install - name: Run Test Suite - run: xvfb-run make check + run: xvfb-run -a make check - name: Build Developer Documentation run: cd doc && make devdoc # FIXME: Will try to perform an out-of-tree build which will not # work without manual intervention due to Scintilla. -# - run: xvfb-run make distcheck +# - run: xvfb-run -a make distcheck - name: Build Source Tarball run: make dist |