Skip to content

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

ci: build and test tntcxx on macos 11 and 12

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

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
test-ssl:
- Disabled
runs-on: ${{ matrix.runs-on }}
name: ${{ matrix.runs-on }} (${{ matrix.mode }}, ${{ matrix.test-ssl }} ssl test)
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=ON ..
make
- name: test
run: cd build && ctest --output-on-failure -E ClientSSL.test