Skip to content

Fix transform

Fix transform #683

Workflow file for this run

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.*