Parent Directory
|
Revision Log
Update workflow
| 1 | name: Makefile CI |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | branches: |
| 6 | - "main" |
| 7 | - "v*.*" |
| 8 | pull_request: |
| 9 | branches: |
| 10 | - "main" |
| 11 | |
| 12 | concurrency: |
| 13 | group: ${{ github.workflow }}-${{ github.ref }} |
| 14 | cancel-in-progress: true |
| 15 | |
| 16 | jobs: |
| 17 | build: |
| 18 | |
| 19 | runs-on: ubuntu-latest |
| 20 | |
| 21 | steps: |
| 22 | - uses: actions/checkout@v4 |
| 23 | |
| 24 | - name: autogen |
| 25 | run: autoreconf --install --force |
| 26 | |
| 27 | - name: Install dependencies |
| 28 | run: | |
| 29 | sudo apt-get update |
| 30 | sudo apt-get install -y libssh-dev libsystemd-dev |
| 31 | |
| 32 | - name: configure |
| 33 | run: ./configure |
| 34 | |
| 35 | - name: Run make |
| 36 | run: make |
| 37 | |
| 38 | - name: Run check |
| 39 | run: make check |
| 40 | |
| 41 | - name: Run distcheck |
| 42 | run: make distcheck |
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |