summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2020-03-21 18:47:03 +0000
committerAdrian Thurston <thurston@colm.net>2020-03-21 18:47:03 +0000
commit197fdd7e939855e229ff6755b76fe8c52756cbf0 (patch)
treee581b180e26afd36ad491330666fd572337cbdd7
parentd42eba32d731ea16a7aeae1fe381c3e953d66377 (diff)
downloadcolm-197fdd7e939855e229ff6755b76fe8c52756cbf0.tar.gz
updated github workflow for basic package name colm, added -e to test/dist.sh
-rw-r--r--.github/workflows/build-test.yml8
-rwxr-xr-xtest/dist.sh2
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 2e3df9c3..1b4c9441 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -26,13 +26,13 @@ jobs:
run: make dist
- name: unpack
- run: mkdir unpack && tar -C unpack -zxvf colm-suite-*.tar.gz
+ run: mkdir unpack && tar -C unpack -zxvf colm-*.tar.gz
- name: configure the dist
- run: cd unpack/colm-suite-* && ./configure --disable-manual
+ run: cd unpack/colm-* && ./configure --disable-manual
- name: make the dist
- run: cd unpack/colm-suite-* && make
+ run: cd unpack/colm-* && make
- name: test the dist
- run: cd unpack/colm-suite-*/test && ./runtests
+ run: cd unpack/colm--*/test && ./runtests
diff --git a/test/dist.sh b/test/dist.sh
index 9fbf96b5..823d16f9 100755
--- a/test/dist.sh
+++ b/test/dist.sh
@@ -1,7 +1,7 @@
#!/bin/bash
#
-set -x
+set -xe
eval `grep VERSION= config.status`
DIST=colm-$VERSION.tar.gz