2021-08-14 09:30:37 -06:00
|
|
|
name: Build (Emscripten)
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-12-04 10:06:06 -07:00
|
|
|
concurrency:
|
2022-12-28 14:06:46 -07:00
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
|
2022-12-04 10:06:06 -07:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-08-14 09:30:37 -06:00
|
|
|
jobs:
|
|
|
|
emscripten:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-01-25 18:33:20 -07:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-23 13:20:30 -07:00
|
|
|
- uses: mymindstorm/setup-emsdk@v14
|
2021-08-14 09:30:37 -06:00
|
|
|
with:
|
2023-07-05 14:52:37 -06:00
|
|
|
version: 3.1.35
|
2022-11-01 08:28:57 -06:00
|
|
|
- name: Install ninja
|
|
|
|
run: |
|
|
|
|
sudo apt-get -y update
|
|
|
|
sudo apt-get install -y ninja-build
|
2023-01-28 22:12:40 -07:00
|
|
|
- name: Configure (CMake)
|
2022-06-03 11:24:20 -06:00
|
|
|
run: |
|
|
|
|
emcmake cmake -S . -B build \
|
2023-01-23 21:30:24 -07:00
|
|
|
-Wdeprecated -Wdev -Werror \
|
2022-10-05 21:27:37 -06:00
|
|
|
-DSDL_WERROR=ON \
|
2022-05-08 10:08:41 -06:00
|
|
|
-DSDL_TESTS=ON \
|
|
|
|
-DSDL_INSTALL_TESTS=ON \
|
2023-08-29 15:18:37 -06:00
|
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
2022-11-01 08:28:57 -06:00
|
|
|
-DCMAKE_INSTALL_PREFIX=prefix \
|
|
|
|
-GNinja
|
2023-01-28 22:12:40 -07:00
|
|
|
- name: Build (CMake)
|
2022-06-03 11:24:20 -06:00
|
|
|
run: cmake --build build/ --verbose
|
2022-05-08 10:08:41 -06:00
|
|
|
- name: Run build-time tests
|
|
|
|
run: |
|
|
|
|
set -eu
|
|
|
|
export SDL_TESTS_QUICK=1
|
2022-11-16 07:13:04 -07:00
|
|
|
# FIXME: enable Emscripten build time tests
|
|
|
|
# ctest -VV --test-dir build/
|
2023-01-28 22:12:40 -07:00
|
|
|
- name: Install (CMake)
|
2022-06-03 11:24:20 -06:00
|
|
|
run: |
|
2022-11-21 22:36:19 -07:00
|
|
|
echo "SDL3_DIR=$(pwd)/prefix" >> $GITHUB_ENV
|
2022-06-03 11:24:20 -06:00
|
|
|
cmake --install build/
|
2023-01-28 22:12:40 -07:00
|
|
|
- name: Package (CPack)
|
|
|
|
run: |
|
2023-08-29 15:18:37 -06:00
|
|
|
cmake --build build/ --config Debug --target package
|
2022-06-03 11:24:20 -06:00
|
|
|
- name: Verify CMake configuration files
|
|
|
|
run: |
|
|
|
|
emcmake cmake -S cmake/test -B cmake_config_build \
|
2023-08-29 15:18:37 -06:00
|
|
|
-DCMAKE_BUILD_TYPE=Debug \
|
2022-10-20 13:02:21 -06:00
|
|
|
-DSDL_VENDOR_INFO="Github Workflow" \
|
2022-06-03 11:24:20 -06:00
|
|
|
-DTEST_SHARED=FALSE \
|
2022-11-21 22:36:19 -07:00
|
|
|
-DCMAKE_PREFIX_PATH=${{ env.SDL3_DIR }}
|
2022-06-03 11:24:20 -06:00
|
|
|
cmake --build cmake_config_build --verbose
|
2024-01-25 18:33:20 -07:00
|
|
|
- uses: actions/upload-artifact@v4
|
2023-01-28 22:12:40 -07:00
|
|
|
with:
|
|
|
|
if-no-files-found: error
|
|
|
|
name: SDL-emscripten
|
|
|
|
path: build/dist/SDL3*
|