diff options
author | Adrian Thurston <thurston@colm.net> | 2020-03-21 18:47:03 +0000 |
---|---|---|
committer | Adrian Thurston <thurston@colm.net> | 2020-03-21 18:47:03 +0000 |
commit | 197fdd7e939855e229ff6755b76fe8c52756cbf0 (patch) | |
tree | e581b180e26afd36ad491330666fd572337cbdd7 /.github | |
parent | d42eba32d731ea16a7aeae1fe381c3e953d66377 (diff) | |
download | colm-197fdd7e939855e229ff6755b76fe8c52756cbf0.tar.gz |
updated github workflow for basic package name colm, added -e to test/dist.sh
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-test.yml | 8 |
1 files changed, 4 insertions, 4 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 |