enable CI builds
parent
fe95b8b970
commit
0989aed0cf
|
@ -19,22 +19,20 @@ jobs:
|
||||||
# Github Actions requires a single row to be added to the build matrix.
|
# Github Actions requires a single row to be added to the build matrix.
|
||||||
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
|
# See https://help.github.com/en/articles/workflow-syntax-for-github-actions.
|
||||||
name: [
|
name: [
|
||||||
# ubuntu-18.04-gcc-5, #TODO Enable once the Python wrapper is optimized for memory
|
ubuntu-18.04-gcc-5,
|
||||||
ubuntu-18.04-gcc-9,
|
ubuntu-18.04-gcc-9,
|
||||||
ubuntu-18.04-clang-9,
|
ubuntu-18.04-clang-9,
|
||||||
macOS-10.15-xcode-11.3.1,
|
macOS-10.15-xcode-11.3.1,
|
||||||
# ubuntu-18.04-gcc-5-tbb,
|
ubuntu-18.04-gcc-5-tbb,
|
||||||
]
|
]
|
||||||
|
|
||||||
#TODO update wrapper to prevent OOM
|
build_type: [Debug, Release]
|
||||||
# build_type: [Debug, Release]
|
|
||||||
build_type: [Release]
|
|
||||||
python_version: [3]
|
python_version: [3]
|
||||||
include:
|
include:
|
||||||
# - name: ubuntu-18.04-gcc-5
|
- name: ubuntu-18.04-gcc-5
|
||||||
# os: ubuntu-18.04
|
os: ubuntu-18.04
|
||||||
# compiler: gcc
|
compiler: gcc
|
||||||
# version: "5"
|
version: "5"
|
||||||
|
|
||||||
- name: ubuntu-18.04-gcc-9
|
- name: ubuntu-18.04-gcc-9
|
||||||
os: ubuntu-18.04
|
os: ubuntu-18.04
|
||||||
|
@ -59,11 +57,11 @@ jobs:
|
||||||
compiler: xcode
|
compiler: xcode
|
||||||
version: "11.3.1"
|
version: "11.3.1"
|
||||||
|
|
||||||
# - name: ubuntu-18.04-gcc-5-tbb
|
- name: ubuntu-18.04-gcc-5-tbb
|
||||||
# os: ubuntu-18.04
|
os: ubuntu-18.04
|
||||||
# compiler: gcc
|
compiler: gcc
|
||||||
# version: "5"
|
version: "5"
|
||||||
# flag: tbb
|
flag: tbb
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|
Loading…
Reference in New Issue