Skip to content

Commit b8616ba

Browse files
committed
show windows workflow
1 parent c9374f0 commit b8616ba

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test-build.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: test-build.yml
2+
on:
3+
push: {}
4+
jobs:
5+
simple-build:
6+
runs-on: windows-latest
7+
steps:
8+
- name: checkout
9+
uses: actions/checkout@v2
10+
with:
11+
path: aws-sdk-cpp
12+
submodules: recursive
13+
- name: build
14+
run: |
15+
cd aws-sdk-cpp
16+
mkdir build
17+
cd build
18+
cmake -G "Visual Studio 17 2022" -DBUILD_ONLY="s3" ..
19+
cmake --build .

0 commit comments

Comments
 (0)