-
Notifications
You must be signed in to change notification settings - Fork 8
43 lines (34 loc) · 1.29 KB
/
win64_vs2019.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: win64_vs2019
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build-windows:
runs-on: windows-2019
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Make 3rdParty and project
run: ${{github.workspace}}/make_win64_vs2019.bat
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Build Debugx64
run: msbuild ${{github.workspace}}/AssetPipeline.sln /p:Configuration=Debug /p:Platform=x64
- name: Build Releasex64
run: msbuild ${{github.workspace}}/AssetPipeline.sln /p:Configuration=Release /p:Platform=x64
- name: Upload built results to Artifact
uses: actions/[email protected]
with:
name: cdscene_sdk_win64_vs2019
path: |
${{github.workspace}}/public/**/*.*
${{github.workspace}}/build/bin/**/AssetPipelineCore.*
${{github.workspace}}/build/bin/**/CDConsumer.*
${{github.workspace}}/build/bin/**/CDProducer.*
${{github.workspace}}/build/bin/**/GenericProducer.*
${{github.workspace}}/build/bin/**/assimp-vc142-mtd.*
${{github.workspace}}/build/bin/**/GenericToORMToCD.*