Parent Directory
|
Revision Log
Create makefile.yml
| 1 | name: Makefile CI |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | branches: [ "main" ] |
| 6 | pull_request: |
| 7 | branches: [ "main" ] |
| 8 | |
| 9 | jobs: |
| 10 | build: |
| 11 | |
| 12 | runs-on: ubuntu-latest |
| 13 | |
| 14 | steps: |
| 15 | - uses: actions/checkout@v4 |
| 16 | |
| 17 | - name: autogen |
| 18 | run: sh autogen.sh |
| 19 | |
| 20 | - name: configure |
| 21 | run: ./configure |
| 22 | |
| 23 | - name: Install dependencies |
| 24 | run: make |
| 25 | |
| 26 | - name: Run check |
| 27 | run: make check |
| 28 | |
| 29 | - name: Run distcheck |
| 30 | run: make distcheck |
| webmaster@leafok.com | ViewVC Help |
| Powered by ViewVC 1.3.0-beta1 |