Skip to content

ci: build and test tntcxx on macos 11 and 12 #15

ci: build and test tntcxx on macos 11 and 12

ci: build and test tntcxx on macos 11 and 12 #15

Workflow file for this run

name: osx
on:
workflow_dispatch:
pull_request:
push:
branches: [ "master" ]
tags: [ "*" ]
jobs:
osx:
strategy:
fail-fast: false
matrix:
runs-on:
- macos-11
- macos-12
mode:
- Debug
- Release
runs-on: ${{ matrix.runs-on }}
steps:
- name: Clone the connector
uses: actions/checkout@v3
- name: Setup stable tarantool from brew
run: brew install tarantool
- name: build
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DTNTCXX_BUILD_TESTING=ON -DTNTCXX_ENABLE_SSL=OFF ..
make
- name: test
run: cd build && ctest --output-on-failure