summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2020-10-13 08:29:25 -0700
committerAdrian Thurston <thurston@colm.net>2020-10-13 08:29:25 -0700
commit8a55bd50f0dbf7c15853cf5a0fc53f49bfb4a34c (patch)
tree4bc8ddc525d3dd38c2049df288cc8453c7694552
parentbbf93e620923bc5a0dac5e890f37ee693b31d806 (diff)
downloadcolm-8a55bd50f0dbf7c15853cf5a0fc53f49bfb4a34c.tar.gz
some renaming of jobs and steps in github workflow
-rw-r--r--.github/workflows/build-test.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
index 07940dd8..865bb2d5 100644
--- a/.github/workflows/build-test.yml
+++ b/.github/workflows/build-test.yml
@@ -1,9 +1,9 @@
-name: Build/Test/Dist CI
+name: build, make-dist, test
on: [push]
jobs:
- build:
+ main:
runs-on: self-hosted
@@ -19,7 +19,7 @@ jobs:
- name: make
run: make
- - name: test
+ - name: test the checked-out source
run: cd test && ./runtests
- name: make dist
@@ -31,7 +31,7 @@ jobs:
- name: configure the dist
run: cd unpack/colm-* && ./configure --disable-manual
- - name: make the dist
+ - name: make from the dist
run: cd unpack/colm-* && make
- name: test the dist