Skip to content

chore: bumping version #35

chore: bumping version

chore: bumping version #35

Workflow file for this run

name: COBS builds
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linux_build:
name: Build and test linux
runs-on: ubuntu-20.04
steps:
- name: Install dependencies
run: |
sudo apt-get install cmake
- name: Check out code for the build
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build and test
run: |
mkdir build
cd build
cmake ..
make
make test
mac_build_gcc:
name: Build and test Mac OS X with gcc
runs-on: macos-11
steps:
- name: Install dependencies
run: |
brew install cmake gcc@11
- name: Check out code for the build
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build and test
run: |
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=gcc-11 -DCMAKE_CXX_COMPILER=g++-11 -DSKIP_PYTHON=1 ..
make
make test
mac_build_clang:
name: Build and test Mac OS X with clang
runs-on: macos-11
steps:
- name: Install dependencies
run: |
brew install cmake boost@1.76
- name: Check out code for the build
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build and test
run: |
# set up some variables so that CMake can find boost
export BOOST_ROOT="/usr/local/opt/boost@1.76"
mkdir build
cd build
cmake -DNOOPENMP=1 -DSKIP_PYTHON=1 ..
make
make test