[docs] Fixed API doc: SRT_INVALID_SOCK instead of SRT_ERROR in str_ac… #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: iOS | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
cxxstdsync: [OFF, ON] | |
name: iOS-cxxsync${{ matrix.cxxstdsync }} | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: configure | |
run: | | |
mkdir _build && cd _build | |
cmake ../ -DENABLE_ENCRYPTION=OFF -DENABLE_STDCXX_SYNC=${{matrix.cxxstdsync}} -DENABLE_UNITTESTS=OFF -DENABLE_BONDING=ON --toolchain scripts/iOS.cmake | |
- name: build | |
run: cd _build && cmake --build ./ |