diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-08 12:08:01 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2020-11-08 12:08:01 (GMT) |
commit | 81a445ad4644c9f44c21bf6ffa5620a5badf800a (patch) | |
tree | f2905f8f084e87b4bcc90be43862d82cf82aa402 | |
parent | ca9f2d62104259f445e4ef0931b86af6c64085f5 (diff) | |
download | tcl-81a445ad4644c9f44c21bf6ffa5620a5badf800a.zip tcl-81a445ad4644c9f44c21bf6ffa5620a5badf800a.tar.gz tcl-81a445ad4644c9f44c21bf6ffa5620a5badf800a.tar.bz2 |
Updated arrangement
-rw-r--r-- | .github/workflows/linux-build.yml | 37 | ||||
-rw-r--r-- | README.md | 7 |
2 files changed, 42 insertions, 2 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml new file mode 100644 index 0000000..db46cfd --- /dev/null +++ b/.github/workflows/linux-build.yml @@ -0,0 +1,37 @@ +name: Linux Build and Test +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Configure + working-directory: unix + run: | + mkdir "${HOME}/install dir" + ./configure ${CFGOPT} "--prefix=$HOME/install dir" || (cat config.log && exit 1) + - name: Build + working-directory: unix + run: | + make all + - name: Build Test Harness + working-directory: unix + run: | + make tcltest + - name: Run Tests + working-directory: unix + run: | + make test + - name: Test-Drive Installation + working-directory: unix + run: | + make install + - name: Create Distribution Package + working-directory: unix + run: | + make dist + - name: Convert Documentation to HTML + working-directory: unix + run: | + make html-tcl @@ -5,8 +5,11 @@ This is the **Tcl 8.7a4** source distribution. You can get any source release of Tcl from [our distribution site](https://sourceforge.net/projects/tcl/files/Tcl/). -[](https://travis-ci.org/tcltk/tcl) -[](https://github.com/tcltk/tcl/actions?query=workflow%3A%22Linux+Build+and+Test%22+branch%3Amain) +8.6.10 [](https://github.com/tcltk/tcl/actions?query=workflow%3A%22Linux+Build+and+Test%22+branch%3Acore-8-6-branch) +<br> +8.7a4 [](https://github.com/tcltk/tcl/actions?query=workflow%3A%22Linux+Build+and+Test%22+branch%3Acore-8-branch) +<br> +9.0a0 [](https://github.com/tcltk/tcl/actions?query=workflow%3A%22Linux+Build+and+Test%22+branch%3Amain) ## Contents 1. [Introduction](#intro) |