-
-
Notifications
You must be signed in to change notification settings - Fork 15
45 lines (35 loc) · 1.11 KB
/
simple_build_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 -