-
Notifications
You must be signed in to change notification settings - Fork 1
166 lines (144 loc) · 4.34 KB
/
ci.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
name: CI
on:
push:
branches:
- dev
paths:
- "**ci.yml"
- "**.hpp"
- "**.cpp"
- "**CMakeLists.txt"
pull_request:
branches:
- dev
paths:
- "**ci.yml"
- "**.hpp"
- "**.cpp"
- "**CMakeLists.txt"
jobs:
build:
strategy:
fail-fast: true
matrix:
config:
- {
os: ubuntu-22.04,
arch: x64,
binary_path: saber,
output_name: saber-linux-x64,
}
- {
os: windows-2022,
arch: x64,
binary_path: Release/saber.exe,
output_name: saber-windows-x64.exe,
}
- {
os: windows-2022,
arch: x86,
binary_path: Release/saber.exe,
output_name: saber-windows-x86.exe,
}
name: build-${{ matrix.config.os }}-${{ matrix.config.arch }}
runs-on: ${{ matrix.config.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y cmake g++-12 libssl-dev ninja-build rpm zlib1g-dev
- name: Add MSBuild to PATH (Windows)
if: runner.os == 'Windows'
uses: microsoft/[email protected]
- name: Configure CMake (Linux)
if: runner.os == 'Linux'
run: cmake -S . -B build -G Ninja
env:
CXX: g++-12
- name: Configure CMake (Windows x64)
if: runner.os == 'Windows' && matrix.config.arch == 'x64'
run: cmake -S . -B build -G "Visual Studio 17 2022" -A x64 -T host=x64
- name: Configure CMake (Windows x86)
if: runner.os == 'Windows' && matrix.config.arch == 'x86'
run: cmake -S . -B build -D net_FORCE_BUILD_OPENSSL=ON -G "Visual Studio 17 2022" -A Win32 -T host=x86
- name: Build
run: cmake --build build --config Release
- name: Upload Binary
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.config.output_name }}
path: ./build/${{ matrix.config.binary_path }}
if-no-files-found: error
release:
needs: build
runs-on: ubuntu-22.04
if: github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get Next Version
id: semver
uses: ietf-tools/semver-action@v1
with:
token: ${{ github.token }}
branch: dev
- name: Create Draft Release
uses: ncipollo/[email protected]
with:
prerelease: true
draft: false
commit: ${{ github.sha }}
tag: ${{ steps.semver.outputs.next }}-dev
name: ${{ steps.semver.outputs.next }}-dev
body: "*pending*"
token: ${{ github.token }}
- name: Update CHANGELOG
id: changelog
uses: requarks/changelog-action@v1
with:
token: ${{ github.token }}
tag: ${{ steps.semver.outputs.next }}-dev
writeToFile: false
- name: Create Release
uses: ncipollo/[email protected]
with:
prerelease: true
allowUpdates: true
draft: false
makeLatest: true
commit: ${{ github.sha }}
tag: ${{ steps.semver.outputs.next }}-dev
name: ${{ steps.semver.outputs.next }}-dev
body: ${{ steps.changelog.outputs.changes }}
token: ${{ github.token }}
upload:
strategy:
fail-fast: true
matrix:
artifact:
["saber-linux-x64", "saber-windows-x64.exe", "saber-windows-x86.exe"]
needs: release
name: upload-${{ matrix.artifact }}
runs-on: ubuntu-22.04
if: github.event_name == 'push'
steps:
- name: Get Current Version
id: semver
uses: ietf-tools/semver-action@v1
with:
token: ${{ github.token }}
branch: dev
noVersionBumpBehavior: silent
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: ${{ matrix.artifact }}
- name: Upload artifact to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ github.token }}
file: ${{ matrix.artifact }}
tag: ${{ steps.semver.outputs.current }}-dev