-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[impl] update c4core: add support for compilation from emscripten
- Loading branch information
Showing
6 changed files
with
90 additions
and
6 deletions.
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
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,69 @@ | ||
name: emscripten | ||
|
||
defaults: | ||
#if: "!contains(github.event.head_commit.message, 'skip ci')" # SKIP | ||
run: | ||
# Use a bash shell so we can use the same syntax for environment variable | ||
# access regardless of the host operating system | ||
shell: bash -e -x {0} | ||
|
||
on: | ||
# https://github.community/t/how-to-trigger-an-action-on-push-or-pull-request-but-not-both/16662 | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
env: | ||
PROJ_PFX_TARGET: ryml- | ||
PROJ_PFX_CMAKE: RYML_ | ||
CMAKE_FLAGS: | ||
NUM_JOBS_BUILD: # 4 | ||
EMSCRIPTEN_CACHE_FOLDER: 'emsdk-cache' | ||
|
||
jobs: | ||
|
||
#---------------------------------------------------------------------------- | ||
emscripten: | ||
name: emscripten/${{matrix.emver}}/c++${{matrix.std}}/${{matrix.bt}} | ||
continue-on-error: true | ||
if: always() # https://stackoverflow.com/questions/62045967/github-actions-is-there-a-way-to-continue-on-error-while-still-getting-correct | ||
runs-on: ${{matrix.os}} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- {std: 11, cxx: em++, emver: 2.0.34, bt: Debug , os: ubuntu-latest, bitlinks: static32} | ||
- {std: 11, cxx: em++, emver: 2.0.34, bt: Release, os: ubuntu-latest, bitlinks: static32} | ||
- {std: 20, cxx: em++, emver: 2.0.34, bt: Debug , os: ubuntu-latest, bitlinks: static32} | ||
- {std: 20, cxx: em++, emver: 2.0.34, bt: Release, os: ubuntu-latest, bitlinks: static32} | ||
- {std: 11, cxx: em++, emver: 3.0.0 , bt: Debug , os: ubuntu-latest, bitlinks: static32} | ||
- {std: 11, cxx: em++, emver: 3.0.0 , bt: Release, os: ubuntu-latest, bitlinks: static32} | ||
- {std: 20, cxx: em++, emver: 3.0.0 , bt: Debug , os: ubuntu-latest, bitlinks: static32} | ||
- {std: 20, cxx: em++, emver: 3.0.0 , bt: Release, os: ubuntu-latest, bitlinks: static32} | ||
env: | ||
STD: "${{matrix.std}}" | ||
CXX_: "${{matrix.cxx}}" | ||
BT: "${{matrix.bt}}" | ||
BITLINKS: "${{matrix.bitlinks}}" | ||
VG: "${{matrix.vg}}" | ||
SAN: "${{matrix.san}}" | ||
LINT: "${{matrix.lint}}" | ||
OS: "${{matrix.os}}" | ||
steps: | ||
- {name: checkout, uses: actions/checkout@v2, with: {submodules: recursive}} | ||
- name: setup emscripten cache | ||
id: cache-system-libraries | ||
uses: actions/cache@v2 | ||
with: {path: "${{env.EMSCRIPTEN_CACHE_FOLDER}}", key: "${{matrix.emver}}-${{runner.os}}"} | ||
- name: setup emscripten | ||
uses: mymindstorm/setup-emsdk@v11 | ||
with: {version: "${{matrix.emver}}", actions-cache-folder: "${{env.EMSCRIPTEN_CACHE_FOLDER}}"} | ||
- {name: show info, run: source .github/setenv.sh && c4_show_info} | ||
- name: static32-configure--------------------------------------------------- | ||
run: source .github/setenv.sh && c4_cfg_test static32 | ||
- {name: static32-build, run: source .github/setenv.sh && c4_build_test static32} | ||
- {name: static32-run, run: source .github/setenv.sh && c4_run_test static32} |
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
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
Submodule c4core
updated
9 files
+6 −2 | .github/setenv.sh | |
+95 −0 | .github/workflows/emscripten.yml | |
+13 −0 | README.md | |
+4 −0 | changelog/current.md | |
+18 −7 | src/c4/bitmask.hpp | |
+8 −4 | src/c4/charconv.hpp | |
+4 −0 | src/c4/cpu.hpp | |
+4 −0 | src/c4/std/vector_fwd.hpp | |
+20 −8 | test/test_charconv.cpp |
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