Skip to content

Commit

Permalink
Added iOS action from PR Haivision#2136
Browse files Browse the repository at this point in the history
  • Loading branch information
maxsharabayko committed Sep 24, 2021
1 parent ae7309c commit 932ee81
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/iOS.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: cxx11

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
name: iOS
runs-on: macos-latest

steps:
- uses: actions/checkout@v2
- name: configure
run: |
mkdir _build && cd _build
cmake ../ -DENABLE_ENCRYPTION=OFF -DENABLE_UNITTESTS=ON -DENABLE_EXPERIMENTAL_BONDING=ON --toolchain scripts/iOS.cmake
- name: build
run: cd _build && cmake --build ./
- name: test
run: cd _build && ctest --extra-verbose

0 comments on commit 932ee81

Please sign in to comment.