mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-10 22:48:05 -05:00
68 lines
2.1 KiB
YAML
68 lines
2.1 KiB
YAML
name: Javascript library
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'master', 'main', 'develop', 'actions_javascript' ]
|
|
tags: [ 'v*' ]
|
|
pull_request:
|
|
branches: [ 'master', 'main', 'develop' ]
|
|
|
|
env:
|
|
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
|
BUILD_TYPE: Release
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: emscripten/emsdk@sha256:744fb6a68941970951bacf9d6632041a0398260492232691ef22bbf54b0585c6 # 4.0.12
|
|
options: --user 1001
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Configure CMake
|
|
shell: bash
|
|
run: |
|
|
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake -DCOOLPROP_JAVASCRIPT_MODULE:BOOL=ON -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
|
# cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake -DCOOLPROP_JAVASCRIPT_MODULE:BOOL=ON -DEMSCRIPTEN_INIT_FLAG:BOOL=OFF -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
|
# cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=/emsdk/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake -DCOOLPROP_JAVASCRIPT_MODULE:BOOL=ON -DEMSCRIPTEN_INIT_FLAG:BOOL=ON -DCMAKE_BUILD_TYPE=RelWithDebInfo
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
set -x
|
|
cmake --build build --target install -j $(nproc) --config $BUILD_TYPE
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 24
|
|
|
|
- name: Test
|
|
shell: bash
|
|
run: |
|
|
set -x
|
|
cd build
|
|
cp ../wrappers/Javascript/test_wasm.mjs .
|
|
node test_wasm.mjs
|
|
|
|
- name: Archive artifacts
|
|
if: ${{ !env.ACT }} # skip during local actions testing
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Javascript
|
|
path: install_root/Javascript
|
|
|
|
# - name: Upload TGZ or ZIP to release
|
|
# if: contains(github.ref, 'refs/tags')
|
|
# uses: svenstaro/upload-release-action@v2
|
|
# with:
|
|
# repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
# dir: install_root/Javascript
|
|
# tag: ${{ github.ref }}
|
|
# overwrite: true
|
|
# file_glob: false
|