Skip to content

Commit 85cba62

Browse files
authored
Merge pull request #1 from Corona-Studio/laolarou726-patch-1
Create cmake-multi-platform.yml
2 parents a707ea6 + d8150da commit 85cba62

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform.
2+
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml
3+
name: CMake on multiple platforms
4+
5+
on:
6+
push:
7+
branches: [ "main" ]
8+
pull_request:
9+
branches: [ "main" ]
10+
11+
jobs:
12+
build:
13+
runs-on: ${{ matrix.os }}
14+
15+
strategy:
16+
matrix:
17+
os: [windows-latest]
18+
build_type: [Release]
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- name: Build
23+
run: |
24+
. .\build.ps1; Build-Host -BuildType "Release" -Arch "x64"

0 commit comments

Comments
 (0)