summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2021-10-24 09:48:42 -0700
committerAdrian Thurston <thurston@colm.net>2021-10-24 09:48:42 -0700
commit3a818005b5255ab00950623b01698ab1ef55aab5 (patch)
tree8275133bd8755da95aa4b3c31b7f3bf94e0da611
parent47274bbc4915e6e99327e92c5189d8a7b3900f71 (diff)
downloadcolm-3a818005b5255ab00950623b01698ab1ef55aab5.tar.gz
remove github action workflow, nowhere to run at present
-rw-r--r--.github/workflows/build-test.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml
deleted file mode 100644
index 865bb2d5..00000000
--- a/.github/workflows/build-test.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-name: build, make-dist, test
-
-on: [push]
-
-jobs:
- main:
-
- runs-on: self-hosted
-
- steps:
- - uses: actions/checkout@v1
-
- - name: autogen
- run: ./autogen.sh
-
- - name: configure
- run: ./configure --disable-manual
-
- - name: make
- run: make
-
- - name: test the checked-out source
- run: cd test && ./runtests
-
- - name: make dist
- run: make dist
-
- - name: unpack
- run: mkdir unpack && tar -C unpack -zxvf colm-*.tar.gz
-
- - name: configure the dist
- run: cd unpack/colm-* && ./configure --disable-manual
-
- - name: make from the dist
- run: cd unpack/colm-* && make
-
- - name: test the dist
- run: cd unpack/colm-*/test && ./runtests