Upgrade to Assimp 5.4.3 (Solve #5) #84
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: 🌎 Web | |
on: [push, pull_request] | |
concurrency: | |
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-web | |
cancel-in-progress: true | |
jobs: | |
web: | |
name: Web | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
build-type: | |
- Release | |
#- Debug | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# - name: Cache | |
# id: cache-system-libraries | |
# uses: actions/cache@v2 | |
# with: | |
# path: emsdk-cache | |
# key: emsdk-${{ runner.os }} | |
- name: Emscripten | |
uses: mymindstorm/setup-emsdk@v14 | |
with: | |
#actions-cache-folder: 'emsdk-cache' | |
no-cache: true | |
version: 3.1.60 | |
- name: Verify Emscripten | |
run: emcc -v | |
- name: CMake | |
run: script/cmake_emscripten.sh build -DCMAKE_BUILD_TYPE=${{ matrix.build-type }} -DURHO3D_LIB_TYPE=static -DURHO3D_PROFILING=0 | |
- name: Build | |
run: cmake --build build --parallel 2 --config ${{ matrix.build-type }} | |
- name: Publish | |
run: echo TODO | |
# TODO: port the ci_publish_web: task from the rakefile |