diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-05-30 20:46:03 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-05-30 20:46:03 +0200 |
commit | d0c8cb91b089e735fb288cf0fd44afb20e08a89c (patch) | |
tree | 46a32da79232fbe06e81049564a5b523e38800e2 /.github/workflows | |
parent | 4e9f6b97432de675d567c2019cadb165559ab0f5 (diff) | |
download | sciteco-d0c8cb91b089e735fb288cf0fd44afb20e08a89c.tar.gz |
cosmetic changes to continuous-integration.yml and mention availability of nightly builds in README
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/continuous-integration.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 9a76f8a..cbe7837 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -41,15 +41,18 @@ jobs: # NOTE: xvfb-run emulates an XServer and is required when building # Gtk versions (since SciTECO calls itself during the build). - - run: xvfb-run -a make - - run: sudo xvfb-run -a make install + - name: make + run: xvfb-run -a make + - name: make install + run: sudo xvfb-run -a make install - name: Run Test Suite 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 -a make distcheck +# - name: make distcheck +# run: xvfb-run -a make distcheck - name: Build Source Tarball run: make dist @@ -96,12 +99,9 @@ jobs: # - name: Build Windows Bundle # run: ./distribute.mk mingw-binary - # FIXME: We need to upload a single file without a wildcard since - # it will otherwise be put into a ZIP. - # Best let distribute.mk create a symlink so we don't have to include - # the version here. + # NOTE: There is no way to prevent Github zipping the artifact. - name: Archive Debian Package (ncurses) uses: actions/upload-artifact@v2 with: name: ${{ matrix.os }} package (ncurses) - path: debian-temp/sciteco-curses_2.0.0-0_amd64.deb + path: debian-temp/*.deb |