Skip to content

[core] Fix kmreq CVE (#3345) #2995

[core] Fix kmreq CVE (#3345)

[core] Fix kmreq CVE (#3345) #2995

Workflow file for this run

name: iOS
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master", "dev" ]
jobs:
build:
strategy:
matrix:
cxxstdsync: [OFF, ON]
name: iOS-cxxsync${{ matrix.cxxstdsync }}
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install dependency packages
run: |
brew install make llvm
- name: configure
run: |
mkdir _build && cd _build
export PATH="/opt/homebrew/opt/llvm/bin:$PATH" CC=clang CXX=clang++
cmake .. -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 ./