forked from abseil/abseil-cpp
-
Notifications
You must be signed in to change notification settings - Fork 3
58 lines (49 loc) · 1.56 KB
/
build.yaml
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
name: Build
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
workflow_dispatch:
env:
PRINCIPIA_HEADERS_ABSEIL: absl
PRINCIPIA_MSVC_ABSEIL: msvc
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
configuration: [Debug, Release]
steps:
- name: Checkout source files
uses: actions/checkout@v3
- name: Initialize build environment
uses: mockingbirdnest/actions/windows/initialize_build@main
with:
configuration: ${{ matrix.configuration }}
- name: Download glog artifact
uses: mockingbirdnest/actions/windows/download_artifact@main
with:
name: glog
configuration: ${{ matrix.configuration }}
- name: Download benchmark artifact
uses: mockingbirdnest/actions/windows/download_artifact@main
with:
name: benchmark
configuration: ${{ matrix.configuration }}
- name: Download googletest artifact
uses: mockingbirdnest/actions/windows/download_artifact@main
with:
name: googletest
configuration: ${{ matrix.configuration }}
- name: Rebuild ${{ matrix.configuration }}
uses: mockingbirdnest/actions/windows/rebuild@main
with:
configuration: ${{ matrix.configuration }}
solution_directory: ${{ env.PRINCIPIA_MSVC_ABSEIL }}
- name: Upload artifact
uses: mockingbirdnest/actions/windows/upload_artifact@main
with:
name: abseil-cpp
headers_directory: ${{ env.PRINCIPIA_HEADERS_ABSEIL }}
solution_directory: ${{ env.PRINCIPIA_MSVC_ABSEIL }}