-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (29 loc) · 969 Bytes
/
Copy pathrelease-readiness.yml
File metadata and controls
34 lines (29 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Release Readiness
on:
pull_request:
push:
branches: [main, develop]
workflow_dispatch:
permissions:
contents: read
jobs:
readiness:
name: readiness (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os:
- ubuntu-22.04
- ubuntu-24.04
runs-on: ${{ matrix.os }}
env:
# PRs are advisory; `main`/manual runs enforce industrial contracts strictly.
AEGIS_INDUSTRIAL_STRICT: ${{ ((github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch') && '1' || '0' }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y clang llvm libbpf-dev libsystemd-dev pkg-config cmake ninja-build python3-jsonschema
- name: Run release-readiness gate
run: scripts/release_readiness.sh