Skip to content

chore(deps): update super-linter/super-linter action to v7 #23

chore(deps): update super-linter/super-linter action to v7

chore(deps): update super-linter/super-linter action to v7 #23

Workflow file for this run

name: Build axparameter application
on:
workflow_dispatch:
push:
paths:
- 'axparameter/**'
- '!axparameter/README.md'
- '.github/workflows/axparameter.yml'
jobs:
test-app:
name: Test app
runs-on: ubuntu-latest
strategy:
matrix:
axis-os: ["11.11.70"]
arch: ["armv7hf", "aarch64"]
env:
EXREPO: acap-native-examples
EXNAME: axparameter
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- name: Build ${{ env.EXNAME }} application
env:
imagetag: ${{ env.EXREPO }}_${{ env.EXNAME }}:${{ matrix.arch }}
run: |
docker image rm -f $imagetag
cd $EXNAME
docker build --no-cache --tag $imagetag --build-arg ARCH=${{ matrix.arch }} .
docker cp $(docker create $imagetag):/opt/app ./build
cd ..
docker image rm -f $imagetag