Skip to content

Commit

Permalink
Xcode 11.2 Support (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
ob authored and ravimandala committed Nov 15, 2019
1 parent 58bc0e3 commit 065f4b3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
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

0 comments on commit 065f4b3

Please sign in to comment.