Kea version 2.7.4 (development) #33
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "simple-build-test" | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- "main" | |
- "master" | |
paths: | |
- "Dockerfile*" | |
- "Makefile" | |
jobs: | |
docker_buildx_debian: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout the repository | |
uses: actions/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build the amd64 version of the Debian image | |
run: make all | |
- name: Check for new/changed hook libraries | |
run: docker run kea-hooks:local ls -1 /hooks | diff .github/kea_hook_libraries.list - | |
docker_buildx_alpine: | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout the repository | |
uses: actions/[email protected] | |
- name: Set up Docker Buildx | |
uses: docker/[email protected] | |
- name: Build the amd64 version of the Alpine image | |
run: make all-alpine | |
- name: Check for new/changed hook libraries | |
run: docker run kea-hooks:local-alpine ls -1 /hooks | diff .github/kea_hook_libraries.list - |