fix: enable building without threads #250
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: Emscripten | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
defaults: | |
run: | |
shell: bash | |
name: Emscripten-C++${{matrix.std}}-${{matrix.build_type}}-${{matrix.lib}} | |
runs-on: ubuntu-22.04 | |
container: emscripten/emsdk | |
strategy: | |
fail-fast: true | |
matrix: | |
build_type: [Release, Debug] | |
lib: [static] | |
std: [14, 17, 20, 23] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Dependencies | |
run: | | |
sudo apt-get update | |
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y \ | |
cmake \ | |
ninja-build | |
- name: Configure | |
env: | |
CXXFLAGS: -Wall -Wextra -Wsign-conversion -Wtautological-compare -Wformat-nonliteral -Wundef -Werror -Wno-error=wasm-exception-spec ${{env.CXXFLAGS}} | |
run: | | |
cmake -S . -B build_${{matrix.build_type}} \ | |
-DBUILD_SHARED_LIBS=${{matrix.lib == 'shared'}} \ | |
-DCMAKE_AR=$(which emar) \ | |
-DCMAKE_CXX_COMPILER=$(which em++) \ | |
-DCMAKE_CXX_STANDARD=${{matrix.std}} \ | |
-DCMAKE_CXX_STANDARD_REQUIRED=ON \ | |
-DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY \ | |
-DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY \ | |
-DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY \ | |
-DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER \ | |
-DCMAKE_INSTALL_PREFIX=${{github.workspace}}/install \ | |
-DCMAKE_RANLIB=$(which emranlib) \ | |
-G Ninja \ | |
-Werror | |
- name: Build | |
run: | | |
cmake --build build_${{matrix.build_type}} \ | |
--config ${{matrix.build_type}} |