Skip to content

Bump docker/bake-action from 4 to 5 #102

Bump docker/bake-action from 4 to 5

Bump docker/bake-action from 4 to 5 #102

Workflow file for this run

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'master'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
env:
BUILD_TAG: unbound:test
CONTAINER_NAME: unbound
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
test:
- cachedb
- standard
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build
uses: docker/bake-action@v5
with:
targets: image-local
env:
DEFAULT_TAG: ${{ env.BUILD_TAG }}
-
name: Start
run: |
docker compose up -d
working-directory: ./test/${{ matrix.test }}
env:
UNBOUND_IMAGE: ${{ env.BUILD_TAG }}
UNBOUND_CONTAINER: ${{ env.CONTAINER_NAME }}
-
name: Check container logs
uses: crazy-max/.github/.github/actions/container-logs-check@main
with:
container_name: ${{ env.CONTAINER_NAME }}
log_check: "info: start of service"
timeout: 120
-
name: Logs
if: always()
run: |
docker compose logs
working-directory: ./test/${{ matrix.test }}
env:
UNBOUND_IMAGE: ${{ env.BUILD_TAG }}
UNBOUND_CONTAINER: ${{ env.CONTAINER_NAME }}