From: Wayne Davison Date: Mon, 25 May 2020 21:43:25 +0000 (-0700) Subject: Create ccpp.yml X-Git-Tag: v3.2.0pre1~101 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b4ace353040dd703dec2c135d329257171d32ea6;p=thirdparty%2Frsync.git Create ccpp.yml --- diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml new file mode 100644 index 00000000..15772993 --- /dev/null +++ b/.github/workflows/ccpp.yml @@ -0,0 +1,23 @@ +name: C CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: prepare-source + run: ./prepare-source + - name: configure + run: ./configure --with-included-popt --with-protected-args --with-included-zlib --enable-simd + - name: make + run: make + - name: make check + run: make check