Update compilation job of Web Github actions #1
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 Builds | |
on: | |
push: | |
branches: [ master, main, gd-extension ] | |
env: | |
PROJECT_FOLDER: gdextension_cpp_example | |
TARGET_PATH: demo/bin/ | |
TARGET_NAME: libgdexample | |
EM_VERSION: 3.1.39 | |
EM_CACHE_FOLDER: emsdk-cache | |
GODOT_VERSION: 4.3 | |
EXPORT_NAME: gdnative_cpp_example/demo/ | |
jobs: | |
web-compilation: | |
runs-on: "ubuntu-20.04" | |
name: ${{ matrix.name }} | |
strategy: | |
matrix: | |
include: | |
- name: Web (wasm32) - Debug | |
cache-name: web-wasm32 | |
target: template_debug | |
artifact-extension: wasm | |
- name: Web (wasm32) - Release | |
cache-name: web-wasm32 | |
target: template_release | |
artifact-extension: wasm | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
lfs: true | |
submodules: recursive | |
- name: Restore Godot build cache | |
uses: ./godot-cpp/.github/actions/godot-cache-restore | |
with: | |
cache-name: ${{ matrix.cache-name }}-${{ matrix.target }} | |
continue-on-error: true | |
# Use python 3.x release (works cross platform) | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v2 | |
with: | |
# Semantic version range syntax or exact version of a Python version | |
python-version: '3.x' | |
# Optional - x64 or x86 architecture, defaults to x64 | |
architecture: 'x64' | |
- name: Web dependencies | |
uses: mymindstorm/setup-emsdk@v14 | |
with: | |
version: ${{ env.EM_VERSION }} | |
actions-cache-folder: ${{ env.EM_CACHE_FOLDER }}-${{ matrix.target }} | |
- name: Configuring Python packages | |
run: | | |
python -c "import sys; print(sys.version)" | |
python -m pip install scons | |
python --version | |
scons --version | |
- name: Compilation | |
run: | | |
mkdir -v -p ${{ env.PROJECT_FOLDER}}/${{ env.TARGET_PATH }} | |
cd ${{ env.PROJECT_FOLDER }} | |
scons platform=web target=${{ matrix.target }} target_path=${{ env.TARGET_PATH }} target_name=${{env.TARGET_NAME}} -j6 ${{ matrix.flags }} | |
- name: Upload Artifact | |
env: | |
ARTIFACT_FOLDER: ${{ env.PROJECT_FOLDER }}/${{ env.TARGET_PATH }} | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ matrix.cache-name }}-${{ matrix.target }} | |
path: ${{ env.ARTIFACT_FOLDER }}*.${{ matrix.artifact-extension }} | |
if-no-files-found: error | |
web-deploy: | |
if: false | |
name: Web Deploy | |
runs-on: ubuntu-latest | |
needs: [ web-compilation ] | |
container: | |
image: barichello/godot-ci:4.3 # Ideally this would be ${GODOT_VERSION}, but Github Actions doesn't allow this! :( | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
lfs: true | |
- name: Download Artifacts | |
uses: actions/download-artifact@v2 | |
- name: Copy Libraries to Project Folder | |
run: | | |
mkdir -v -p ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}} | |
cp javascript/${{env.TARGET_NAME}}.wasm ${{env.PROJECT_FOLDER}}/${{env.TARGET_PATH}} | |
- name: Setup | |
run: | | |
mkdir -v -p ~/.local/share/godot/templates | |
mv /root/.local/share/godot/templates/${GODOT_VERSION}.stable ~/.local/share/godot/templates/${GODOT_VERSION}.stable | |
- name: Web Build | |
run: | | |
mkdir -v -p build/web | |
cd $EXPORT_NAME | |
godot -v --export "HTML5" ../../build/web/index.html | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: web | |
path: build/web | |
# Installing rsync is needed in order to deploy to GitHub Pages. Without it, the build will fail. | |
- name: Install rsync 📚 | |
run: | | |
apt-get update && apt-get install -y rsync | |
- name: Deploy to GitHub Pages 🚀 | |
uses: JamesIves/github-pages-deploy-action@releases/v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH: gh-pages # The branch the action should deploy to. | |
FOLDER: build/web # The folder the action should deploy. |