simplify: Add a note about locked target vertices #374
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: release | |
on: | |
push: | |
branches: | |
- 'master' | |
paths-ignore: | |
- '*.md' | |
jobs: | |
gltfpack: | |
strategy: | |
matrix: | |
os: [windows, ubuntu, macos] | |
name: gltfpack-${{matrix.os}} | |
runs-on: ${{matrix.os}}-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: zeux/basis_universal | |
ref: gltfpack | |
path: basis_universal | |
- name: cmake configure | |
run: cmake . -DMESHOPT_BUILD_GLTFPACK=ON -DMESHOPT_BASISU_PATH=basis_universal -DMESHOPT_WERROR=ON -DCMAKE_MSVC_RUNTIME_LIBRARY="MultiThreaded" -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" | |
- name: cmake build | |
run: cmake --build . --target gltfpack --config Release -j 2 | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: gltfpack-windows | |
path: Release/gltfpack.exe | |
if: matrix.os == 'windows' | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: gltfpack-${{matrix.os}} | |
path: gltfpack | |
if: matrix.os != 'windows' | |
nodejs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '16' | |
- name: install wasi | |
run: | | |
curl -sL https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-$VERSION/wasi-sdk-$VERSION.0-linux.tar.gz | tar xz | |
curl -sL https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-$VERSION/libclang_rt.builtins-wasm32-wasi-$VERSION.0.tar.gz | tar xz -C wasi-sdk-$VERSION.0 | |
curl -sL https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-$VERSION/wasi-sysroot-$VERSION.0.tar.gz | tar xz -C wasi-sdk-$VERSION.0/share | |
mv wasi-sdk-$VERSION.0 wasi-sdk | |
env: | |
VERSION: 22 | |
- name: build | |
run: | | |
make -j2 -B WASI_SDK=wasi-sdk gltf/library.wasm js | |
git status | |
- name: npm pack | |
run: | | |
cp LICENSE.md gltf/ | |
cp LICENSE.md js/ | |
cd gltf && npm pack && cd .. | |
cd js && npm pack && cd .. | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: gltfpack-npm | |
path: gltf/gltfpack-*.tgz | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: meshoptimizer-npm | |
path: js/meshoptimizer-*.tgz |