-
Notifications
You must be signed in to change notification settings - Fork 2
53 lines (43 loc) · 1.42 KB
/
release.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
name: release
on:
push:
branches: [ "master", "dev"]
jobs:
build-windows:
name: Build Windows version
runs-on: windows-latest
steps:
- name: Install ninja
run: choco install ninja
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
- uses: ilammy/msvc-dev-cmd@v1
- name: Configure CMake
run: cmake --preset=msvc-release -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build ${{github.workspace}}/build --config Release
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: hypertextcpp-windows-latest
path: |
${{github.workspace}}/build/hypertextcpp.exe
release_hypertextcpp:
name: Release hypertextcpp
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Build linux version in Docker
run: DOCKER_BUILDKIT=1 docker build --build-arg cmake_preset=clang-release --output build .
- name: Run unit tests
working-directory: ${{github.workspace}}/build/tests
run: ./test_hypertextcpp
- name: Download hypertextcpp Windows build
uses: actions/download-artifact@v4
with:
name: hypertextcpp-windows-latest
path: build
- name: Test
shell: bash
run: ls build/hypertextcpp && ls build/hypertextcpp.exe