Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Xcode 11.2 Support #392

Merged
merged 1 commit into from
Nov 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/CI-PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Select Xcode 11.1
run: sudo xcode-select -s /Applications/Xcode_11.1.app
- name: Select Xcode 11.2
run: sudo xcode-select -s /Applications/Xcode_11.2.app
- name: Run Bluepill tests
run: ./scripts/bluepill.sh test
- name: Build Bluepill
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v1
- name: Select Xcode 11.1
run: sudo xcode-select -s /Applications/Xcode_11.1.app
- name: Select Xcode 11.2
run: sudo xcode-select -s /Applications/Xcode_11.2.app
- name: Run Bluepill tests
run: ./scripts/bluepill.sh test
- name: Build Bluepill
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
- name: Report event trigger data
run: |
echo "Event ${{ github.event_name }}, ref: ${{ github.ref }}"
- name: Select Xcode 11.1
run: sudo xcode-select -s /Applications/Xcode_11.1.app
- name: Select Xcode 11.2
run: sudo xcode-select -s /Applications/Xcode_11.2.app
- name: Run Bluepill tests
run: ./scripts/bluepill.sh test
- name: Build Bluepill
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ A full list supported options are listed here.

## Requirements

Bluepill only works with **Xcode 11.1**. If you're looking for old Xcode support, please check out the other branches:
Bluepill only works with **Xcode 11.2**. If you're looking for old Xcode support, please check out the other branches:

* [Xcode-8](https://github.com/linkedin/bluepill/tree/xcode8)
* [Xcode-9.0](https://github.com/linkedin/bluepill/tree/xcode-9.0)
Expand All @@ -107,6 +107,7 @@ Bluepill only works with **Xcode 11.1**. If you're looking for old Xcode support
* [Xcode-10.2](https://github.com/linkedin/bluepill/tree/xcode-10.2)
* [Xcode-10.3](https://github.com/linkedin/bluepill/tree/xcode-10.3)
* [Xcode-11.0](https://github.com/linkedin/bluepill/tree/xcode-11.0)
* [Xcode-11.1](https://github.com/linkedin/bluepill/tree/xcode-11.1)

## Acknowledgement

Expand Down Expand Up @@ -135,7 +136,7 @@ If you're using [Bitrise.io](https://bitrise.io) as your CI/CD, you can start us

- Easiest way to get Bluepill binary?

Latest [release](https://github.com/linkedin/bluepill/releases/).
Latest [release](https://github.com/linkedin/bluepill/releases/).

- How to test Bluepill in Xcode

Expand Down
4 changes: 2 additions & 2 deletions bp/src/BPConstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

#import <Foundation/Foundation.h>

#define BP_DEFAULT_RUNTIME "iOS 13.1"
#define BP_DEFAULT_RUNTIME "iOS 13.2"
#define BP_DEFAULT_DEVICE_TYPE "iPhone 8"
#define BP_TM_PROTOCOL_VERSION 17
#define BP_DAEMON_PROTOCOL_VERSION 26
#define BP_DEFAULT_XCODE_VERSION "11.1"
#define BP_DEFAULT_XCODE_VERSION "11.2"
#define BP_MAX_PROCESSES_PERCENT 0.75
#define BP_TM_PROTOCOL_VERSION 17

Expand Down