update vertex format apis #539
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: linux_gmake2 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build-ubuntn: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Generate makefile | |
run: | | |
chmod +x ${{github.workspace}}/make_linux_gmake2.sh | |
bash ${{github.workspace}}/make_linux_gmake2.sh | |
- name: Use makefile to compile debug version | |
run: make config=debug | |
- name: Use makefile to compile release version | |
run: make config=release | |
- name: Upload built results to Artifact | |
uses: actions/[email protected] | |
with: | |
name: cdscene_sdk_linux_gmake2 | |
path: | | |
${{github.workspace}}/public/**/*.* | |
${{github.workspace}}/build/bin/**/libAssetPipelineCore.* | |
${{github.workspace}}/build/bin/**/libCDProducer.* |