misp-docker/.github/workflows/test-build-latest.yml

40 lines
994 B
YAML
Raw Normal View History

name: Build the Docker images
on:
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target: [misp-core, misp-modules]
steps:
- name: Checkout repository
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: Initialize environment
2023-05-18 11:50:13 +02:00
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
2023-09-15 13:20:19 +02:00
sed -e '/^[[:space:]]*$/d' -e '/[#@]/d' -e 's/\"//g' -e 's/\(^[^=]*\)=\(.*\)/\1="\2"/' template.env > env.hcl
2023-12-07 11:02:08 +01:00
echo "COMMIT_HASH=`echo '${{ github.sha }}' | cut -c 1-7`" >> "$GITHUB_ENV"
echo "NAMESPACE=local" >> "$GITHUB_ENV"
- name: Build
uses: docker/bake-action@v4
with:
push: false
provenance: false
files: docker-bake.hcl, env.hcl
targets: ${{ matrix.target }}