forked from libhal/ci
-
Notifications
You must be signed in to change notification settings - Fork 0
202 lines (167 loc) · 7.44 KB
/
tests.yml
File metadata and controls
202 lines (167 loc) · 7.44 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# Copyright 2024 Khalil Estell
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: 🧪 tests
on:
workflow_dispatch:
workflow_call:
inputs:
library:
required: true
type: string
coverage:
required: true
type: boolean
fail_on_coverage:
required: true
type: boolean
coverage_threshold:
required: true
type: string
repo:
required: true
type: string
conan_version:
required: true
type: string
jobs:
pull:
runs-on: ubuntu-22.04
if: github.event.action == 'deleted'
steps:
- name: 📥 Install CMake 3.27.7
run: pip3 install cmake==3.27.7
- name: 📥 Install Conan ${{ inputs.conan_version }}
run: pip3 install conan==${{ inputs.conan_version }}
- name: 📡 Add `libhal` repo to conan remotes
run: conan remote add libhal
https://libhal.jfrog.io/artifactory/api/conan/trunk-conan
- name: 📡 Add `astraeus` repo to conan remotes
run: conan remote add astraeus
https://libhal.jfrog.io/artifactory/api/conan/astraeuslibrary-conan-local
- name: 📡 Create and setup default profile
run: conan profile detect --force
- name: 👁️🗨️ Show conan profile
run: conan profile show
- name: 📡 Install linux default profiles
run: conan config install -sf profiles/x86_64/linux/ -tf profiles https://github.com/libhal/conan-config.git
- name: 📡 Sign into JFrog Artifactory
env:
API_KEY: ${{ secrets.JFROG_LIBHAL_TRUNK_API_KEY }}
JFROG_USER: ${{ secrets.JFROG_LIBHAL_TRUNK_USER }}
# run: conan remote login -p $API_KEY libhal $JFROG_USER
run: conan remote login -p $API_KEY astraeus $JFROG_USER
- name: 🚮 Pulling package version ${{ github.event.release.tag_name }} from `astraeus` repo
run: conan remove "${{ inputs.library }}/${{ github.event.release.tag_name }}" --confirm -r=astraeus
run_tests:
if: github.event.action != 'deleted'
strategy:
fail-fast: false
matrix:
include:
- toolchain: gcc
compiler_version: 12
os: ubuntu-22.04
standard_library: libstdc++
installations: sudo apt install -y clang-tidy-15
enable_coverage: ${{ inputs.coverage }}
profile_path: profiles/x86_64/linux/
- toolchain: apple-clang
compiler_version: 14
os: macos-12
standard_library: libc++
installations: brew install llvm && sudo ln -s $(brew --prefix llvm)/bin/clang-tidy /usr/local/bin/
profile_path: profiles/x86_64/mac/
# - toolchain: gcc
# compiler_version: 12
# os: windows-2022
# standard_library: libstdc++
# installations: choco install python mingw make && choco install llvm --version=16.0.6
# profile_path: profiles/x86_64/windows/
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
repository: ${{ inputs.repo }}
- name: 📥 Install OS Specific Tools
if: ${{ matrix.installations != '' }}
run: ${{ matrix.installations }}
- name: 📥 Install CMake 3.27.7
run: pip3 install cmake==3.27.7
- name: 📥 Install Conan ${{ inputs.conan_version }}
run: pip3 install conan==${{ inputs.conan_version }}
- name: 📡 Add `libhal` repo to conan remotes
run: conan remote add libhal
https://libhal.jfrog.io/artifactory/api/conan/trunk-conan
- name: 📡 Add `astraeus` repo to conan remotes
run: conan remote add astraeus
https://libhal.jfrog.io/artifactory/api/conan/astraeuslibrary-conan-local
- name: 📡 Create and setup default profile
run: conan profile detect --force
- name: 👁️🗨️ Show conan profile
run: conan profile show
- name: 📡 Install default profiles
run: conan config install -sf ${{ matrix.profile_path }} -tf profiles https://github.com/libhal/conan-config.git
- name: 🔬 Create & Run Unit Tests
if: ${{ runner.os != 'Windows' }}
run: VERBOSE=1 conan create . --build=missing -s compiler.cppstd=20 -s compiler.version=${{ matrix.compiler_version }} -s compiler.libcxx=${{ matrix.standard_library }} -s compiler=${{ matrix.toolchain }} -s build_type=Debug
- name: 🔬 Create & Run Unit Tests
if: ${{ runner.os == 'Windows' }}
run: $env:VERBOSE = 1 ; conan create . --build=missing -s compiler.cppstd=20 -s compiler.version=${{ matrix.compiler_version }} -s compiler.libcxx=${{ matrix.standard_library }} -s compiler=${{ matrix.toolchain }} -s build_type=Debug
- name: 🔬 Build & Run Unit Tests (for coverage)
if: ${{ matrix.enable_coverage }}
run: conan build . --build=missing -s compiler.cppstd=20 -s compiler.version=${{ matrix.compiler_version }} -s compiler.libcxx=${{ matrix.standard_library }} -s compiler=${{ matrix.toolchain }} -s build_type=Debug
- name: 📥 Install GCovr
if: ${{ matrix.enable_coverage }}
run: pip3 install gcovr
- name: 🔎 Generate Code Coverage
if: ${{ matrix.enable_coverage }}
working-directory: build
run: |
mkdir coverage/ && python3 -m gcovr --root ../../ --exclude ".*/third_party/.*" --cobertura coverage/coverage.xml --html coverage/index.html --html-details --sort-percentage
- name: Coverage Summary
if: ${{ matrix.enable_coverage }}
uses: irongut/CodeCoverageSummary@v1.3.0
with:
filename: build/coverage/coverage.xml
badge: true
fail_below_min: ${{ inputs.fail_on_coverage }}
format: markdown
hide_branch_rate: false
hide_complexity: true
indicators: true
output: both
thresholds: ${{ inputs.coverage_threshold }}
- name: Extract & Save Coverage SVG
if: ${{ matrix.enable_coverage }}
run: wget
$(cat code-coverage-results.md |
grep -Eo 'https://img.shields.io/badge/[^)]*')
-O build/coverage/coverage.svg
- uses: actions/upload-artifact@v4
if: github.ref == 'refs/heads/main' && github.repository == inputs.repo
with:
name: coverage
retention-days: 1
path: build/coverage/
- name: 📡 Sign into JFrog Artifactory
if: startsWith(github.ref, 'refs/tags/')
env:
API_KEY: ${{ secrets.JFROG_LIBHAL_TRUNK_API_KEY }}
JFROG_USER: ${{ secrets.JFROG_LIBHAL_TRUNK_USER }}
# run: conan remote login -p $API_KEY libhal $JFROG_USER
run: conan remote login -p $API_KEY astraeus $JFROG_USER
- name: 🆙 Upload package to `astraeus` repo
if: startsWith(github.ref, 'refs/tags/')
run: conan upload "${{ inputs.library }}/${{ github.ref_name }}" --confirm -r=astraeus