aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2023-02-06 10:27:14 +1000
committerSteve Bennett <steveb@workware.net.au>2023-02-06 10:59:58 +1000
commit554bf03257cee5874713371801e1ed7168277f71 (patch)
tree2c58360fc8632d5dd9099451bd927897084b8adc /.github/workflows
parenta60bffc94f84969084a2625f701cf98790e92c4a (diff)
downloadjimtcl-554bf03257cee5874713371801e1ed7168277f71.zip
jimtcl-554bf03257cee5874713371801e1ed7168277f71.tar.gz
jimtcl-554bf03257cee5874713371801e1ed7168277f71.tar.bz2
build: add github actions for CI on Linux
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/makefile.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml
new file mode 100644
index 0000000..3a0fa82
--- /dev/null
+++ b/.github/workflows/makefile.yml
@@ -0,0 +1,30 @@
+name: Makefile CI
+
+on:
+ push:
+ branches: [ "master" ]
+ pull_request:
+ branches: [ "master" ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Install dependencies
+ run: sudo apt install libsqlite3-dev libhiredis-dev
+
+ - name: configure
+ run: ./configure --maintainer --full --allextmod --disable-docs
+
+ - name: Build
+ run: make
+
+ - name: Run check
+ run: make test
+
+ - name: Test bootstrap jimsh
+ run: ./test-bootstrap-jim