diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml new file mode 100644 index 0000000000..26a166b15c --- /dev/null +++ b/.github/workflows/binaries.yml @@ -0,0 +1,20 @@ +name: C/C++ CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + container: catalinii/minisatip-build-image:latest + steps: + - uses: actions/checkout@v2 + - name: Configure ARM + run: | + ./configure --enable-enigma --enable-staging --host=arm-linux-gnueabihf + make + diff --git a/.github/workflows/coverity-scan.yml b/.github/workflows/coverity-scan.yml index bf6de8b55e..1993a171c7 100644 --- a/.github/workflows/coverity-scan.yml +++ b/.github/workflows/coverity-scan.yml @@ -9,17 +9,12 @@ on: jobs: coverity: runs-on: ubuntu-latest + container: catalinii/minisatip-build-image:latest steps: - uses: actions/checkout@v2 - - name: Install libraries - run: | - set -x - ls -al - sudo apt-get update - sudo apt-get install dvb-apps libdvbcsa-dev - name: Configure - run: ./configure + run: ./configure --with-mcli=/vdr-plugin-mcli/ - name: Download Coverity Build Tool run: |