-
Notifications
You must be signed in to change notification settings - Fork 132
71 lines (64 loc) · 1.83 KB
/
per-commit.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: "Per-commit ns-3 CI jobs"
run-name: "per-commit"
on:
push:
branches: [develop]
pull_request:
branches: [develop]
workflow_dispatch:
jobs:
code-formatting:
uses: ./.github/workflows/.formatting.yml
compile:
needs: code-formatting
runs-on: ubuntu-latest
container:
image: archlinux
timeout-minutes: 720
strategy:
matrix:
compiler: [g++]
mode: [default, optimized]
stage: [test]
include:
- compiler: clang++
mode: debug
- compiler: g++
mode: debug
- compiler: g++ # this job is the longest (~ 30 min)
mode: debug
extra_options: --disable-precompiled-headers
- compiler: g++
mode: debug
extra_options: --disable-asserts
env:
COMPILER: ${{ matrix.compiler }}
MODE: ${{ matrix.mode }}
EXTRA_OPTIONS: ${{ matrix.extra_options }}
steps:
# The following step is required in all jobs that use this repo's actions
- name: "Retrieve actions from repository"
uses: actions/checkout@v4
with:
sparse-checkout: .github/actions
- name: "Install dependencies and checkout repo in ns-3"
uses: ./.github/actions/install-per-commit
- name: "Build ns-3"
uses: ./.github/actions/build
- if: matrix.stage == 'test'
name: "Test ns-3"
uses: ./.github/actions/test
code-linting:
needs: compile
uses: ./.github/workflows/.linting.yml
documentation:
needs: code-linting
uses: ./.github/workflows/.doc.yml
code-analysis:
needs: documentation
uses: ./.github/workflows/analysis.yml
deploy-doc:
# do not run on PR events
if: ( ! github.event_name == 'pull_request' )
needs: documentation
uses: ./.github/workflows/deploy-doc.yml