Skip to content

Merge pull request #271 from bostjan/fix-test-with-empty-systemd-unit… #30

Merge pull request #271 from bostjan/fix-test-with-empty-systemd-unit…

Merge pull request #271 from bostjan/fix-test-with-empty-systemd-unit… #30

name: Build QA - Arch Matrix
on:
workflow_dispatch:
pull_request:
branches:
- master
paths:
- '**'
- '!.github/**'
- '.github/workflows/build-qa-arch-matrix.yml'
- '!.gitignore'
- '!ChangeLog'
- '!COPYING'
- '!configure.scan'
- '!dev-tools/**'
- 'dev-tools/install-dev-software.sh'
- 'dev-tools/libexec/get-release-*.sh'
- '!doc/**'
- '!etc/**'
- '!install/**'
- '!lib/*/IMPORT.defs'
- '!lib/*/LICENSE'
- '!README.md'
push:
branches:
- master
- force-github-action-run
tags:
- '*'
paths:
- '**'
- '!.github/**'
- '.github/workflows/build-qa-arch-matrix.yml'
- '!.gitignore'
- '!ChangeLog'
- '!COPYING'
- '!configure.scan'
- '!dev-tools/**'
- 'dev-tools/install-dev-software.sh'
- 'dev-tools/libexec/get-release-*.sh'
- '!doc/**'
- '!etc/**'
- '!install/**'
- '!lib/*/IMPORT.defs'
- '!lib/*/LICENSE'
- '!README.md'
jobs:
build-qa-arch-matrix:
### Define the matrix of architectures/platforms to run on
#
strategy:
matrix:
include:
- arch: linux/386
libdir: /lib/i386-linux-gnu
- arch: linux/amd64
libdir: /lib/x86_64-linux-gnu
### Define the environment to run in
#
name: Build on ${{matrix.arch}}
runs-on: ubuntu-20.04
container:
image: debian:bullseye
options: --platform ${{ matrix.arch }}
###
### Steps to run
###
steps:
### Fetch the code
#
# We're using @v1 here to support execution on 32-bit systems
#
- uses: actions/checkout@v1
with:
fetch-depth: 0
# Work around the fix for CVE-2022-24765
# (In this particular instance, git is not installed yet at this point.)
# (The repo "clone" here is that actions/checkout@v1 magic that kinda looks like a git clone.)
# (This command has been moved further down to where git is actually available [more or less accidentally, tbh].)
#- run: git config --global --add safe.directory $GITHUB_WORKSPACE || true
### Make sure we're running on the right platform
#
- run: ls -lad ${{ matrix.libdir }}
### Build
#
- run: ./dev-tools/install-dev-software.sh
# Work around the fix for CVE-2022-24765
# (Should be done higher up, but see higher up for why it is down here.)
- run: git config --global --add safe.directory $GITHUB_WORKSPACE || true
- run: ./bootstrap.sh
- run: ./configure --enable-option-checking=fatal --enable-everything
- run: make -j4
- run: make -j4 check
- run: cat tests/*/test-suite.log
if: failure()