Skip to content

Automatic update of versions #139

Automatic update of versions

Automatic update of versions #139

name: Build container-example application
on:
workflow_dispatch:
push:
paths:
- "container-example/**"
- "!container-example/README.md"
- ".github/workflows/container-example.yml"
jobs:
test-app:
name: Test app
runs-on: ubuntu-latest
strategy:
matrix:
include:
- arch: aarch64
platformarch: "linux/arm64/v8"
axis-os: 12.1.60
env:
EXREPO: acap-native-examples
EXNAME: container-example
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- name: Build ${{ env.EXNAME }} application
env:
imagetag: ${{ env.EXREPO }}_${{ env.EXNAME }}:${{ matrix.arch }}
alpinetag: 3.19.1
run: |
docker image rm -f $imagetag
cd $EXNAME
docker pull --platform=${{ matrix.platformarch }} alpine:$alpinetag
docker save -o alpine.tar alpine:$alpinetag
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