-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
π©βπ» Put builds into a build matrix
Also upload artifacts, add Linux target.
- Loading branch information
1 parent
b822b14
commit 7d15aa2
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,10 @@ on: | |
pull_request: | ||
jobs: | ||
build_windows: | ||
runs-on: [windows-latest] | ||
strategy: | ||
matrix: | ||
os: [windows-latest, ubuntu-latest] | ||
runs-on: | ||
env: | ||
DEPOT_TOOLS_WIN_TOOLCHAIN: 0 | ||
steps: | ||
|
@@ -20,3 +23,9 @@ jobs: | |
- uses: threeal/[email protected] | ||
- name: Build Shared Library | ||
run: cmake --build build --config release | ||
- name: 'Upload Artifact' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: libs | ||
path: ./build/src/Release/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters