manifest.json: Update version #119
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Build | |
on: push | |
jobs: | |
build_acap: | |
name: Build ACAPs | |
runs-on: ubuntu-latest | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
strategy: | |
matrix: | |
# Build both normal version and debug version | |
debug_write: ["", "debug"] | |
steps: | |
- uses: actions/checkout@v3 | |
# Test all Makefile targets and make sure the ACAP files are created | |
- name: Build | |
run: DEBUG_WRITE=${{ matrix.debug_write }} make -j dockerbuild | |
- name: Verify | |
run: | | |
for f in *.eap; do | |
echo "Verification of $f:" | |
tar tzf "$f" | |
done | |
- name: Clean | |
run: | | |
make clean | |
echo 'Make sure no ACAP files are left:' | |
[ -z "$(ls ./*.eap ./*LICENSE.txt)" ] |