-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
supermerill
committed
Jun 17, 2020
1 parent
3302766
commit 19b6c22
Showing
1 changed file
with
8 additions
and
5 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,19 +6,22 @@ on: | |
|
||
jobs: | ||
build: | ||
name: Upload Release Asset | ||
name: Make and upload windows SuperSlicer deps | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- uses: ilammy/msvc-dev-cmd@v1 | ||
- name: mkdir in deps | ||
run: mkdir deps/build | ||
- name: cmake and make deps | ||
- name: cmake deps | ||
working-directory: ./deps/build | ||
run: | | ||
cmake .. -G "Visual Studio 16 2019" -A x64 | ||
msbuild /m ALL_BUILD.vcxproj | ||
shell: cmd | ||
run: cmake .. -G "Visual Studio 16 2019" -A x64 | ||
- name: make deps | ||
working-directory: ./deps/build | ||
shell: cmd | ||
run: msbuild /m ALL_BUILD.vcxproj | ||
- name: Upload artifact | ||
uses: actions/[email protected] | ||
with: | ||
|