aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2021-05-30 20:46:03 +0200
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2021-05-30 20:46:03 +0200
commitd0c8cb91b089e735fb288cf0fd44afb20e08a89c (patch)
tree46a32da79232fbe06e81049564a5b523e38800e2
parent4e9f6b97432de675d567c2019cadb165559ab0f5 (diff)
downloadsciteco-d0c8cb91b089e735fb288cf0fd44afb20e08a89c.tar.gz
cosmetic changes to continuous-integration.yml and mention availability of nightly builds in README
-rw-r--r--.github/workflows/continuous-integration.yml16
-rw-r--r--README10
2 files changed, 16 insertions, 10 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
diff --git a/README b/README
index b2e0a34..6b40434 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-![Continuous Integration](https://github.com/rhaberkorn/sciteco/actions/workflows/continuous-integration.yml/badge.svg)
+[![Continuous Integration](https://github.com/rhaberkorn/sciteco/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/rhaberkorn/sciteco/actions/workflows/continuous-integration.yml)
Overview
========
@@ -104,6 +104,7 @@ Download
========
There are prebuilt binary packages and source bundles for your convenience:
+
* [Download Archive at Sourceforge](https://sourceforge.net/projects/sciteco/files/)
* [Github Releases](https://github.com/rhaberkorn/sciteco/releases)
* [Ubuntu PPA](https://launchpad.net/~robin-haberkorn/+archive/sciteco)
@@ -113,7 +114,12 @@ There are prebuilt binary packages and source bundles for your convenience:
[`sciteco` package from this layer](https://github.com/rhaberkorn/meta-rhaberkorn).
* The official [SciTECO homepage](http://sciteco.sf.net/) is a live demo.
-For more details on building from source, please refer to `INSTALL`.
+These releases may be quite outdated, so you may also give a try to the
+[nightly Ubuntu packages](https://nightly.link/rhaberkorn/sciteco/workflows/continuous-integration/master) -
+they represent the repository's HEAD commit but may well be instable.
+
+If everything fails, you can try building from source.
+See [`INSTALL`](INSTALL) for more details.
Additional Documentation
========================