refact mesh/skin/skeleton/polygon group #665
Workflow file for this run
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
name: win64_vs2022 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-windows: | |
runs-on: windows-latest | |
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_vs2022.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_vs2022 | |
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-vc143-mtd.* | |
${{github.workspace}}/build/bin/**/GenericToORMToCD.* |