Reverse order so that the cubic slerp doesn't wobble. #5408
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: 🌐 JavaScript Builds | |
on: [push, pull_request] | |
# Global Settings | |
env: | |
GODOT_BASE_BRANCH: master | |
SCONSFLAGS: verbose=yes warnings=extra werror=yes debug_symbols=no | |
EM_VERSION: 2.0.27 | |
EM_CACHE_FOLDER: "emsdk-cache" | |
concurrency: | |
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-javascript | |
cancel-in-progress: true | |
jobs: | |
javascript-template: | |
runs-on: "ubuntu-20.04" | |
name: Template (target=release, tools=no) | |
steps: | |
- uses: actions/checkout@v2 | |
# Additional cache for Emscripten generated system libraries | |
- name: Load Emscripten cache | |
id: javascript-template-emscripten-cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{env.EM_CACHE_FOLDER}} | |
key: ${{env.EM_VERSION}}-${{github.job}} | |
- name: Set up Emscripten latest | |
uses: mymindstorm/setup-emsdk@v10 | |
with: | |
version: ${{env.EM_VERSION}} | |
actions-cache-folder: ${{env.EM_CACHE_FOLDER}} | |
- name: Verify Emscripten setup | |
run: | | |
emcc -v | |
- name: Setup Godot build cache | |
uses: ./.github/actions/godot-cache | |
continue-on-error: true | |
- name: Setup python and scons | |
uses: ./.github/actions/godot-deps | |
- name: Compilation | |
uses: ./.github/actions/godot-build | |
with: | |
sconsflags: ${{ env.SCONSFLAGS }} | |
platform: javascript | |
target: release | |
tools: false | |
tests: false | |
- name: Upload artifact | |
uses: ./.github/actions/upload-artifact |