Skip to content

Commit 1dac9d5

Browse files
authored
Add jobs for Linux static SDK and Wasm SDK builds (#142)
* Add workflows for Linux static SDK and Wasm SDK builds * Update URLs and remove extra PR testing to prepare for merge
1 parent 285e1fb commit 1dac9d5

File tree

3 files changed

+640
-0
lines changed

3 files changed

+640
-0
lines changed

.github/workflows/pull_request.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,17 @@ jobs:
1515
cd MyPackage
1616
swift package init --type library
1717
swift build
18+
linux_static_sdk_pre_build_command: |
19+
mkdir MyPackage
20+
cd MyPackage
21+
swift package init --type library
22+
enable_linux_static_sdk_build: true
23+
# Wasm
24+
wasm_sdk_pre_build_command: |
25+
mkdir MyPackage
26+
cd MyPackage
27+
swift package init --type library
28+
enable_wasm_sdk_build: true
1829
# Windows
1930
windows_build_command: |
2031
mkdir MyPackage

0 commit comments

Comments
 (0)