This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
Disable hardened runtime in Xcode Cloud #22
Workflow file for this run
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: CI | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: | |
- macos-11 | |
- macos-12 | |
- macos-13 | |
- macos-14 | |
runs-on: ${{ matrix.platform }} | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Print Xcode version | |
run: xcodebuild -version -sdk | |
- name: Test | |
run: xcodebuild -project Aware.xcodeproj -scheme Aware test ENABLE_HARDENED_RUNTIME=NO CODE_SIGN_STYLE=Manual CODE_SIGN_IDENTITY= |