pwndbg/.github/workflows/docker.yml

34 lines
807 B
YAML

name: Docker build
on:
pull_request:
paths:
- '**'
- '!mkdocs.yml'
- '!docs/**'
- '!*.md'
jobs:
docker:
strategy:
fail-fast: false
matrix:
images: [ubuntu22.04, ubuntu24.04, debian12, archlinux]
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Cache for docker images
uses: jpribyl/action-docker-layer-caching@v0.1.1
# Ignore the failure of a step and avoid terminating the job.
continue-on-error: true
with:
key: ${{ matrix.images }}-cache-images-{hash}
- name: Docker Build ${{ matrix.images }}
run: docker compose build ${{ matrix.images }}
- name: Test on ${{ matrix.images }}
run: docker compose run ${{ matrix.images }} ./tests.sh