-
Notifications
You must be signed in to change notification settings - Fork 1
243 lines (211 loc) · 6.69 KB
/
main.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
---
# Lucena Build Abstraction Library
# “main.yml”
# Copyright © 2024 Lucena
# All Rights Reserved
#
# This file is distributed under the University of Illinois Open Source
# License. See license/License.txt for details.
#
# Configure GitHub actions for continuous integration.
#
# Based on examples presented by Cristian Adam at <https://cristianadam.eu/20191222/using-github-actions-with-c-plus-plus-and-cmake/>.
# Uses CMake as a multiplatform scripting language to simplify management.
name: Build Matrix
on: [push]
jobs:
build:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- # Currently macOS 14.6.1 and Xcode 15.3
name: "macOS-14/Xcode/libc++"
artifact: "macOS-AppleClang-libcpp.tar.xz"
os: macos-14
build_type: "Release"
cc: "clang"
cxx: "clang++"
- # Currently Ubuntu 24.04 LTS and gcc 14.0.1
name: "Ubuntu-24.04/gcc/libstdc++"
artifact: "linux64-gcc-libstdcpp.tar.xz"
os: ubuntu-24.04
build_type: "Release"
cc: "gcc"
cxx: "g++"
- # Currently Windows Server 2022 and MSVS 17.11
name: "Windows-2022/MSVS/Microsoft"
artifact: "win64-msvc-microsoft.tar.xz"
os: windows-2022
build_type: "Release"
cc: "cl"
cxx: "cl"
# It appears we need to invoke this directly.
environment_script: "C:/Program Files (x86)/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat"
steps:
- uses: actions/checkout@v4
- name: Configure
env:
CC: ${{ matrix.config.cc }}
CXX: ${{ matrix.config.cxx }}
shell: cmake -P {0}
run: |
# Manually set up the shell environment for MSVS since we’re not coming
# in through the Developer Command Prompt.
if ("${{ runner.os }}" STREQUAL "Windows"
AND NOT "x${{ matrix.config.environment_script }}" STREQUAL "x")
execute_process(
COMMAND
"${{ matrix.config.environment_script }}" && set
OUTPUT_FILE
environment_script_output.txt
RESULT_VARIABLE
result
)
# if (NOT result EQUAL 0)
# message(FATAL_ERROR "Converting Windows env failed: ${result}")
# endif()
file(
STRINGS
environment_script_output.txt output_lines)
foreach(line IN LISTS output_lines)
if (line MATCHES "^([a-zA-Z0-9_-]+)=(.*)$")
set(
ENV{${CMAKE_MATCH_1}} "${CMAKE_MATCH_2}")
endif()
endforeach()
endif()
execute_process(
COMMAND
cmake
-S .
-B build
-D CMAKE_BUILD_TYPE=${{ matrix.config.build_type }}
RESULT_VARIABLE
result
)
if (NOT result EQUAL 0)
message(FATAL_ERROR "CMake configure failed: ${result}")
endif()
- name: Build
shell: cmake -P {0}
run: |
# Manually set up the shell environment for MSVS since we’re not coming
# in through the Developer Command Prompt.
if ("${{ runner.os }}" STREQUAL "Windows"
AND NOT "x${{ matrix.config.environment_script }}" STREQUAL "x")
file(
STRINGS
environment_script_output.txt output_lines)
foreach(line IN LISTS output_lines)
if (line MATCHES "^([a-zA-Z0-9_-]+)=(.*)$")
set(ENV{${CMAKE_MATCH_1}} "${CMAKE_MATCH_2}")
endif()
endforeach()
endif()
execute_process(
COMMAND
cmake --build build
RESULT_VARIABLE
result
)
if (NOT result EQUAL 0)
message(FATAL_ERROR "Converting Windows env failed: ${result}")
endif()
- name: Test
shell: cmake -P {0}
run: |
include(ProcessorCount)
ProcessorCount(N)
execute_process(
COMMAND
ctest -j ${N}
WORKING_DIRECTORY
build
RESULT_VARIABLE
result
)
if (NOT result EQUAL 0)
message(FATAL_ERROR "Running tests failed: ${result}")
endif()
- name: Install Strip
run: cmake --install build --prefix instdir --strip
- name: Pack
working-directory: instdir
run: cmake -E tar cJfv ../${{ matrix.config.artifact }} .
- name: Upload
uses: actions/upload-artifact@v4
with:
path: ./${{ matrix.config.artifact }}
name: ${{ matrix.config.artifact }}
release:
if: contains(github.ref, 'tags/v')
name: Release
runs-on: ubuntu-24.04
needs: build
steps:
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: true
prerelease: false
- name: Store Release url
run: |
echo "${{ steps.create_release.outputs.upload_url }}" > ./upload_url
- uses: actions/upload-artifact@v4
with:
path: ./upload_url
name: upload_url
publish:
if: contains(github.ref, 'tags/v')
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- name: "macOS-14/Xcode/libc++"
artifact: "macOS-AppleClang-libcpp.tar.xz"
os: macos-14
- name: "Ubuntu-24.04/gcc/libstdc++"
artifact: "linux64-gcc-libstdcpp.tar.xz"
os: ubuntu-24.04
- name: "Windows-latest/MSVS/Microsoft"
artifact: "win64-msvc-microsoft.tar.xz"
os: windows-latest
needs: release
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: ${{ matrix.config.artifact }}
path: ./
merge-multiple: true
- name: Download URL
uses: actions/download-artifact@v4
with:
name: upload_url
path: ./
merge-multiple: true
- id: set_upload_url
run: |
upload_url=`cat ./upload_url`
echo ::set-output name=upload_url::$upload_url
- name: Upload to Release
id: upload_to_release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.set_upload_url.outputs.upload_url }}
asset_path: ./${{ matrix.config.artifact }}
asset_name: ${{ matrix.config.artifact }}
asset_content_type: application/x-gtar
...