Skip to content

Commit

Permalink
ci: add latest macos
Browse files Browse the repository at this point in the history
  • Loading branch information
drewdzzz committed Oct 16, 2023
1 parent 5c1f6ac commit 1cd2be4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,33 @@ jobs:
make -j
- name: test
run: cd build && ctest --output-on-failure

macos_latest:
runs-on: macos-latest

strategy:
fail-fast: false
matrix:
tarantool:
- '2.11'
mode:
- Debug
- Release

steps:
- name: Clone the connector
uses: actions/checkout@v3

- name: Setup tarantool ${{ matrix.tarantool }}
uses: tarantool/setup-tarantool@v1
with:
tarantool-version: ${{ matrix.tarantool }}

- name: build
run: |
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DTNTCXX_BUILD_TESTING=ON -DTNTCXX_ENABLE_SSL=OFF ..
make -j
- name: test
run: cd build && ctest --output-on-failure

0 comments on commit 1cd2be4

Please sign in to comment.