File tree Expand file tree Collapse file tree 2 files changed +49
-1
lines changed
Expand file tree Collapse file tree 2 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Build
2+
3+ on :
4+ pull_request :
5+ types : [synchronize, opened, reopened, ready_for_review]
6+
7+ jobs :
8+ build-windows :
9+ runs-on : windows-latest
10+ steps :
11+ - name : Checkout code
12+ uses : actions/checkout@v4
13+ with :
14+ submodules : recursive
15+ fetch-depth : 1
16+
17+ - name : Set up Ninja
18+ uses : seanmiddleditch/gha-setup-ninja@v4
19+
20+ - name : Set up CMake
21+ uses : jwlawson/actions-setup-cmake@v2
22+
23+ - name : Configure
24+ run : cmake -S . -B build -G Ninja
25+
26+ - name : Build
27+ run : cmake --build build --config Release
28+
29+ build-linux :
30+ runs-on : ubuntu-latest
31+ steps :
32+ - name : Checkout code
33+ uses : actions/checkout@v4
34+ with :
35+ submodules : recursive
36+ fetch-depth : 1
37+
38+ - name : Set up Ninja
39+ uses : seanmiddleditch/gha-setup-ninja@v4
40+
41+ - name : Set up CMake
42+ uses : jwlawson/actions-setup-cmake@v2
43+
44+ - name : Configure
45+ run : cmake -S . -B build -G Ninja
46+
47+ - name : Build
48+ run : cmake --build build --config Release
Original file line number Diff line number Diff line change 1- name : Build and Release
1+ name : Release
22
33on :
44 push :
You can’t perform that action at this time.
0 commit comments