-
Notifications
You must be signed in to change notification settings - Fork 140
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] Added CIS build script for WebAssembly.
- Loading branch information
1 parent
3ece941
commit 10de2ee
Showing
2 changed files
with
72 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: WebAssembly | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
build_android: | ||
strategy: | ||
matrix: | ||
config: [Release, Debug] | ||
fail-fast: false | ||
|
||
runs-on: ubuntu-latest | ||
|
||
env: | ||
ANDROID_API_LEVEL: 28 | ||
README: ${{ github.workspace }}/README.txt | ||
GAUSSIAN_LIB_DIR: external/GaussianLib/include | ||
EMSDK_CACHE_DIR: 'emsdk-cache' | ||
EMSDK_CMAKE_DIR: 'upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake' | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Install Dependencies (Emscripten SDK) | ||
uses: mymindstorm/setup-emsdk@v14 | ||
with: | ||
actions-cache-folder: ${{env.EMSDK_CACHE_DIR}} | ||
|
||
- name: Configure CMake | ||
run: > | ||
cmake -S . -B ${{github.workspace}}/WebAssembly | ||
-DCMAKE_TOOLCHAIN_FILE="${{ env.EMSDK_CACHE_DIR }}/${{ env.EMSDK_CMAKE_DIR }}" | ||
-DCMAKE_BUILD_TYPE=${{ matrix.config }} | ||
-DLLGL_BUILD_STATIC_LIB=ON | ||
-DLLGL_BUILD_RENDERER_WEBGL=ON | ||
-DLLGL_GL_ENABLE_OPENGL2X=OFF | ||
-DLLGL_BUILD_RENDERER_NULL=OFF | ||
-DLLGL_BUILD_RENDERER_VULKAN=OFF | ||
-DLLGL_BUILD_RENDERER_DIRECT3D11=OFF | ||
-DLLGL_BUILD_RENDERER_DIRECT3D12=OFF | ||
-DLLGL_BUILD_EXAMPLES=ON | ||
-DLLGL_BUILD_TESTS=OFF | ||
-DGaussLib_INCLUDE_DIR:STRING="${{ env.GAUSSIAN_LIB_DIR }}" | ||
- name: Build | ||
run: | | ||
cmake --build ${{github.workspace}}/WebAssembly --config ${{ matrix.config }} | ||
CURRENT_TIME=$(date) | ||
echo "LLGL built for HTML5/WebAssembly on $CURRENT_TIME." > ${{ env.README }} | ||
- name: Generate HTML5 pages | ||
if: matrix.config == 'Release' | ||
run: | | ||
scripts/GenerateHTML5Examples.sh . "${{github.workspace}}/WebAssembly" --verbose | ||
- name: Upload Binaries | ||
uses: actions/upload-artifact@v4 | ||
if: matrix.config == 'Release' | ||
with: | ||
name: LLGL-WebAssembly | ||
path: | | ||
${{ env.README }} | ||
${{ github.workspace }}/WebAssembly/html5 | ||
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