Skip to content

WIP: meson build system #9

WIP: meson build system

WIP: meson build system #9

Workflow file for this run

# Builds the project with alternative tools.
name: Build-extra
on:
workflow_dispatch:
push:
branches-ignore:
- 'dependabot/**'
paths:
- 'm4/**'
- 'src/**.c'
- 'src/**.h'
- 'src/**.mk'
- 'src/**Makefile'
- .github/workflows/build-extra.yml
- Makefile
- ci/printenv.sh
- config.mk.in
- config.sh.in
- configure
- configure.ac
pull_request:
paths:
- 'm4/**'
- 'src/**.c'
- 'src/**.h'
- 'src/**.mk'
- 'src/**Makefile'
- .github/workflows/build-extra.yml
- Makefile
- ci/printenv.sh
- config.mk.in
- config.sh.in
- configure
- configure.ac
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build-clang:
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142
with:
egress-policy: block
allowed-endpoints: >
azure.archive.ubuntu.com:80
files.pythonhosted.org:443
github.com:443
packages.microsoft.com:443
ppa.launchpadcontent.net:443
pypi.org:443
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
- name: update package information
run: sudo apt-get update -qy
- name: install dependencies
run: >
sudo apt-get install -qy
libapparmor-dev libselinux1-dev
- name: print env
run: ./ci/printenv.sh
- name: install dependencies
run: sudo apt-get install ninja-build
- name: Install meson
run: pip install --pre meson==0.56.2 # https://packages.debian.org/oldstable/meson
- name: meson setup
run: CC=clang-14 meson setup _builddir -Dprefix=/usr -Dapparmor=true -Dselinux=true --werror
- name: meson compile
run: meson compile -C _builddir
- name: meson install
run: sudo apt-get install meson
run: sudo meson install -C _builddir

Check failure on line 76 in .github/workflows/build-extra.yml

View workflow run for this annotation

GitHub Actions / Build-extra

Invalid workflow file

The workflow is not valid. .github/workflows/build-extra.yml (Line: 76, Col: 7): 'run' is already defined