Skip to content

don't sign code with cert #2

don't sign code with cert

don't sign code with cert #2

Workflow file for this run

name: Test CI/CD
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-cmake:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install cmake
run: brew install cmake
- name: Build
run: cmake -S . -B build && cmake --build build
build-xcode:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Install cmake
run: brew install cmake
- name: Build
run: |
xcodebuild -project experiment.xcodeproj -scheme experiment -configuration Release build CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO