MSVC fixes #456
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: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
- develop | |
push: | |
branches: | |
- master | |
- develop | |
tags: | |
- v* | |
jobs: | |
cxx: | |
name: ${{ matrix.os_short }} c++ | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 120 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["windows-2022", "macos-11.0", "ubuntu-22.04"] | |
include: | |
- os: "windows-2022" | |
os_short: "windows" | |
- os: "macos-11.0" | |
os_short: "macos" | |
- os: "ubuntu-22.04" | |
os_short: "linux" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install | |
shell: bash | |
run: | | |
if [ "${{ matrix.os_short }}" == "linux" ]; then | |
export OCL_SUDO_INSTALL="1" | |
fi | |
.github/scripts/ci_deps.sh | |
./install_boost.sh | |
./install.sh \ | |
--build-type release \ | |
--boost-prefix $(pwd) \ | |
--install \ | |
--test \ | |
cxx | |
nodejs: | |
name: ${{ matrix.os_short }} node.js | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 120 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["windows-2022", "macos-11.0", "ubuntu-22.04"] | |
include: | |
- os: "windows-2022" | |
os_short: "windows" | |
libdir: windows-nodejs-x64 | |
- os: "macos-11.0" | |
os_short: "macos" | |
libdir: macos-nodejs-x64 | |
- os: "ubuntu-22.04" | |
os_short: "linux" | |
libdir: linux-nodejs-x64 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install | |
shell: bash | |
run: | | |
if [ "${{ matrix.os_short }}" == "linux" ]; then | |
export OCL_SUDO_INSTALL="1" | |
fi | |
.github/scripts/ci_deps.sh | |
./install_boost.sh | |
./install.sh \ | |
--build-type release \ | |
--node-architecture x64 \ | |
--boost-prefix $(pwd) \ | |
--install \ | |
--install-prefix $(pwd)/src/npmpackage/build/Release/${{ matrix.libdir }} \ | |
--test \ | |
nodejs | |
python: | |
name: ${{ matrix.os_short }} python | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 120 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["windows-2022", "macos-11.0", "ubuntu-22.04"] | |
include: | |
- os: "windows-2022" | |
os_short: "windows" | |
python_version: "3.10" | |
- os: "macos-11.0" | |
os_short: "macos" | |
python_version: "3.11" | |
- os: "ubuntu-22.04" | |
os_short: "linux" | |
python_version: "3.10" | |
cmake_generator: "Unix Makefiles" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python_version }} | |
- name: Install | |
shell: bash | |
run: | | |
./install.sh \ | |
--build-type release \ | |
--install-system-deps \ | |
--python-executable python \ | |
--test \ | |
python | |
env: | |
CMAKE_GENERATOR: ${{ matrix.cmake_generator }} |