升级轻量化、纹理压缩、draco等能力 #61
Workflow file for this run
This file contains hidden or 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: Windows | |
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| env: | |
| VCPKG_ROOT: ${{ github.workspace }}\vcpkg | |
| VCPKG_TRIPLET: x64-windows | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup anew (or from cache) vcpkg (and does not build any package) | |
| uses: lukka/run-vcpkg@v11 | |
| - name: Build | |
| run: cargo build -vv --release |