Browse Source

CI: Add reprotest

master
Samuel Thibault 3 years ago
parent
commit
b3ba314ba7
1 changed files with 14 additions and 0 deletions
  1. 14
    0
      .github/workflows/ci.yml

+ 14
- 0
.github/workflows/ci.yml View File

@@ -85,3 +85,17 @@ jobs:
run: ${{ matrix.build_env }} make
- name: make check
run: ${{ matrix.check_env }} make check

reprotest:

runs-on: ubuntu-latest
name: Build with reprotest

steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt-get update && sudo apt-get install libpcaudio-dev libsonic-dev ronn kramdown reprotest
- name: autoconf
run: ./autogen.sh ; chmod -x INSTALL m4/*.m4
- name: run
run: reprotest "./configure && make clean && make && make check && touch success" success

Loading…
Cancel
Save