Skip to content

Try again with setting xcode #5

Try again with setting xcode

Try again with setting xcode #5

Workflow file for this run

name: iOS
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]
jobs:
build:
strategy:
matrix:
cxxstdsync: [ON] #[OFF, ON] # cxxsync=off is Linux-gcc-only.
name: iOS-cxxsync${{ matrix.cxxstdsync }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install dependency packages
run: |

Check failure on line 21 in .github/workflows/iOS.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/iOS.yaml

Invalid workflow file

You have an error in your yaml syntax on line 21
brew install make llvm
xcode-select --install
xcodebuild -runFirstLaunch
- name: configure
run: |
mkdir _build && cd _build
cmake .. -G Xcode -DCMAKE_MAKE_PROGRAM=gmake -DENABLE_ENCRYPTION=OFF -DENABLE_STDCXX_SYNC=${{matrix.cxxstdsync}} -DENABLE_MONOTONIC_CLOCK=OFF -DENABLE_UNITTESTS=OFF -DUSE_CXX_STD=c++11 -DENABLE_BONDING=ON --toolchain scripts/iOS.cmake
- name: build
run: cd _build && cmake --build ./