-
Notifications
You must be signed in to change notification settings - Fork 6
183 lines (157 loc) · 5.39 KB
/
ci-scripts-build.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
# .github/workflows/ci-scripts-build.yml for use with EPICS Base ci-scripts
# (see: https://github.com/epics-base/ci-scripts)
# This is YAML - indentation levels are crucial
# Set the 'name:' properties to values that work for you (MYMODULE)
name: EK9000
# Trigger on pushes and PRs to any branch, but ignore docs
on:
push:
paths-ignore:
- 'docs/*'
- '**/*.html'
- '**/*.md'
pull_request:
env:
SETUP_PATH: .ci-local:.ci
# For the sequencer on Linux/Windows/MacOS
APT: re2c
CHOCO: re2c
BREW: re2c
# This is where we define our dependencies in CI
SET: deps
jobs:
format:
name: clang-format formatting check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: clang-format check
uses: jidicula/[email protected]
with:
clang-format-version: '14'
check-path: 'ek9000App'
exclude-regex: 'terminals.h'
scripts-check:
# Run basic checks on the Python scripts bundled here.
# Checks the terminals.json against the schema as well.
name: Scripts Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Install Packages
run: python3 -m pip install -r ek9000App/src/scripts/requirements.txt
- name: Check terminals.json and templates
run: python3 ek9000App/src/scripts/ci_check.py
build-base:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
# Set environment variables from matrix parameters
env:
CMP: ${{ matrix.cmp }}
BCFG: ${{ matrix.configuration }}
WINE: ${{ matrix.wine }}
RTEMS: ${{ matrix.rtems }}
RTEMS_TARGET: ${{ matrix.rtems_target }}
EXTRA: ${{ matrix.extra }}
TEST: ${{ matrix.test }}
strategy:
fail-fast: false
matrix:
# Job names also name artifacts, character limitations apply
# Ubuntu 22.04:
# clang, clang-13, clang-14, clang-15 (clang=clang-14)
# gcc, gcc-9, gcc-10, gcc-12, gcc-13 (gcc=gcc-11)
include:
- os: ubuntu-22.04
cmp: gcc
configuration: default
wine: "64"
name: "Ub-22 gcc-11 + MinGW"
- os: ubuntu-22.04
cmp: gcc
configuration: static
extra: "CMD_CXXFLAGS=-std=c++14"
name: "clang-tidy checks"
clang-tidy: true
- os: ubuntu-22.04
cmp: gcc
configuration: static
extra: "CMD_CXXFLAGS=-std=c++14"
name: "Ub-22 gcc-11 C++14, static"
- os: ubuntu-22.04
cmp: gcc
configuration: static
extra: "CMD_CXXFLAGS=-std=c++03"
name: "Ub-22 gcc-11 C++03, static"
- os: ubuntu-22.04
cmp: clang
configuration: default
extra: "CMD_CXXFLAGS=-std=c++14"
name: "Ub-22 clang-14 C++14"
- os: ubuntu-22.04
cmp: gcc
configuration: default
rtems: "5"
rtems_target: RTEMS-beatnik
test: NO
name: "Ub-22 gcc-11 + RT-5.1 beatnik"
- os: ubuntu-22.04
cmp: clang
configuration: default
extra: "CMD_CXXFLAGS=-std=c++03"
name: "Ub-22 clang-14 C++03"
- os: macos-latest
cmp: clang
configuration: default
name: "MacOS clang-12"
- os: windows-2019
cmp: gcc
configuration: default
name: "Win2019 MinGW"
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Automatic core dumper analysis
uses: mdavidsaver/ci-core-dumper@master
# Install dependencies. Qemu for RTEMS, mingw GCC for Windows cross builds and bear to generate compile_commands.json for clang-tidy
- name: "apt-get install"
run: |
sudo apt-get update
sudo apt-get -y install qemu-system-x86 g++-mingw-w64-x86-64 gdb bear clang-tidy
if: runner.os == 'Linux'
# Install required cross toolchain for RTEMS
- name: "apt-get install ${{ matrix.cmp }}"
run: |
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get -y install ${{ matrix.cmp }}
if: matrix.utoolchain
- name: Prepare and compile dependencies
run: python .ci/cue.py prepare
- name: Build main module
run: python .ci/cue.py build
# Run clang-tidy on our code. To do this, we need compile_commands.json, which we generate using 'bear'
# To get a complete compile_commands.json, we need to re-run the entire compile with bear. For now, we'll only do this on Linux native builds.
- name: Run clang-tidy
run: |
python3 -m pip install -r scripts/requirements.txt
make clean
bear -- make -j$(nproc)
python3 scripts/clang-tidy.py
if: matrix.clang-tidy
- name: Run main module tests
run: python .ci/cue.py test
# Resulting test files will be uploaded and attached to this run
- name: Upload tapfiles Artifact
uses: actions/upload-artifact@v2
with:
name: tapfiles ${{ matrix.name }}
path: '**/O.*/*.tap'
- name: Collect and show test results
run: python .ci/cue.py test-results