meson-ci-cd-integration — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited meson-ci-cd-integration (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use CI to prove that the project builds, tests, installs, and packages cleanly.
Runnable examples live under this skill's examples/ directory.
meson setup builddir -Dwarning_level=3
meson compile -C builddir
meson test -C builddir --print-errorlogs
meson install -C builddir --destdir "$PWD/stage"A CI cache should speed up repeated work without making stale configuration invisible.
The safe default cache strategy is:
ccache or sccache)subprojects/packagecache)Do not treat build/ as a universal portable cache. Restoring a build directory can help only when the exact same toolchain, source tree, and configure state are still valid. That is why the build-directory caching pattern from Meson issue #9234 should not be the default general-case strategy. For the general case, compiler caches are the safer win.
name: ci
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
buildtype: [debugoptimized, release]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: |
sudo apt-get update
sudo apt-get install -y ccache
python -m pip install meson ninja
- uses: actions/cache@v4
with:
path: |
~/.cache/ccache
subprojects/packagecache
key: ${{ runner.os }}-meson-${{ matrix.buildtype }}-${{ hashFiles('meson.build', 'meson_options.txt', '**/*.wrap') }}
- run: meson setup builddir --buildtype=${{ matrix.buildtype }} -Dwarning_level=3
- run: meson compile -C builddir
- run: meson test -C builddir --print-errorlogsOnly do it when:
Even then, prefer a narrow restore policy over a blanket “cache the whole build directory forever” approach.
Use meson introspect to report the build shape and catch unexpected option drift.
meson introspect builddir --targets
meson introspect builddir --tests
meson introspect builddir --dependencies
meson introspect builddir --buildoptions--print-errorlogs~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.