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

Bug 1635205 - Update CI to use Xcode 11.4.1 #856

Merged
merged 1 commit into from
May 5, 2020
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
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ jobs:

Check Swift formatting:
macos:
xcode: "11.4.0"
xcode: "11.4.1"
steps:
- checkout
- run:
Expand All @@ -544,7 +544,7 @@ jobs:

iOS build and test:
macos:
xcode: "11.4.0"
xcode: "11.4.1"
steps:
- checkout
- run:
Expand Down Expand Up @@ -656,7 +656,7 @@ jobs:

iOS integration test:
macos:
xcode: "11.4.0"
xcode: "11.4.1"
steps:
- checkout
- skip-if-doc-only
Expand Down Expand Up @@ -707,7 +707,7 @@ jobs:

Carthage release:
macos:
xcode: "11.4.0"
xcode: "11.4.1"
steps:
- checkout
- attach_workspace:
Expand All @@ -720,7 +720,7 @@ jobs:

macOS release build:
macos:
xcode: "11.4.0"
xcode: "11.4.1"
steps:
- install-rustup
- setup-rust-toolchain
Expand Down Expand Up @@ -897,7 +897,7 @@ jobs:

pypi-macos-release:
macos:
xcode: "11.4.0"
xcode: "11.4.1"
steps:
- install-rustup
- setup-rust-toolchain
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
* BUGFIX: Fixed a race condition in the `atexit` handler, that would have resulted in the message "No database found". See [bug 1634310](https://bugzilla.mozilla.org/show_bug.cgi?id=1634310).
* The minimum versions of many secondary dependencies have been lowered to make the Glean SDK compatible with more environments.
* Dependencies that depend on the version of Python being used are now specified using the `Declaring platform specific dependencies syntax in setuptools <https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-platform-specific-dependencies>`__. This means that more recent versions of dependencies are likely to be installed on Python 3.6 and later, and unnecessary backport libraries won't be installed on more recent Python versions.
* iOS:
* Glean for iOS is now being built with Xcode 11.4.1

# v28.0.0 (2020-04-23)

Expand Down