Skip to content

Move to ACAP 4 Native SDK and open62541 1.4.4 #147

Move to ACAP 4 Native SDK and open62541 1.4.4

Move to ACAP 4 Native SDK and open62541 1.4.4 #147

Workflow file for this run

---
name: Build
on: push
jobs:
build_acap:
name: Build ACAP packages
runs-on: ubuntu-latest
env:
DEBIAN_FRONTEND: noninteractive
steps:
- uses: actions/checkout@v4
# Test all Makefile targets and make sure the ACAP files are created
- name: Build
run: 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)" ]