Skip to content

Pin the cross-compile docker images to bullseye #66

Pin the cross-compile docker images to bullseye

Pin the cross-compile docker images to bullseye #66

Workflow file for this run

name: Test macro feature
on:
workflow_dispatch:
push:
branches: [ master ]
paths-ignore:
- README
- NEWS
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
name: Test macro feature
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@1b05615854632b887b69ae1be8cbefe72d3ae423 # v2.6.0
with:
egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Install dependencies
run: sudo apt-get update -qq && sudo apt-get install -y libyaml-dev
- name: Autogen && configure
run: |
./autogen.sh
./configure --enable-macros
- name: Make
run: make
- name: Make check
run: make check
- name: Store the test log
if: ${{ always() }} # store the test log even if the tests failed
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: test-suite-macro.log
path: tests/test-suite.log