aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/makefile.yml
blob: a6c4ab81ba82b53126774ff8fbec008994a32691 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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 --allextmod --disable-docs

    - name: Build
      run: make

    - name: Run check
      run: make test

    - name: Test bootstrap jimsh
      run: ./test-bootstrap-jim