-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'trunk' into charlie/code-login-field-char-limit
- Loading branch information
Showing
18 changed files
with
173 additions
and
105 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,26 @@ | ||
# Nodes with values to reuse in the pipeline. | ||
common_params: | ||
# Common plugin settings to use with the `plugins` key. | ||
- &common_plugins | ||
- automattic/a8c-ci-toolkit#3.1.0 | ||
# Common environment values to use with the `env` key. | ||
- &common_env | ||
IMAGE_ID: xcode-15.4 | ||
|
||
# This is the default pipeline – it will build and test the app | ||
|
||
env: | ||
IMAGE_ID: $IMAGE_ID | ||
|
||
steps: | ||
- label: "🔬 Build and Test" | ||
command: .buildkite/commands/build-and-test.sh | ||
env: *common_env | ||
plugins: *common_plugins | ||
plugins: [$CI_TOOLKIT_PLUGIN] | ||
agents: | ||
queue: mac | ||
|
||
- label: ":swift: SwiftLint" | ||
command: run_swiftlint --strict | ||
plugins: *common_plugins | ||
plugins: [$CI_TOOLKIT_PLUGIN] | ||
notify: | ||
- github_commit_status: | ||
context: "SwiftLint" | ||
agents: | ||
queue: "default" | ||
queue: default | ||
|
||
- label: "🛠 Verify App Store Target Builds" | ||
command: .buildkite/commands/build-and-test-app-store.sh | ||
env: *common_env | ||
plugins: *common_plugins | ||
plugins: [$CI_TOOLKIT_PLUGIN] | ||
agents: | ||
queue: mac |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,9 @@ | ||
# Nodes with values to reuse in the pipeline. | ||
common_params: | ||
# Common plugin settings to use with the `plugins` key. | ||
- &common_plugins | ||
- automattic/a8c-ci-toolkit#3.1.0 | ||
# Common environment values to use with the `env` key. | ||
- &common_env | ||
IMAGE_ID: xcode-15.4 | ||
|
||
# This is the default pipeline – it will build and test the app | ||
steps: | ||
- label: "🛠 App Store Upload" | ||
command: .buildkite/commands/build-and-upload-release.sh | ||
priority: 1 | ||
env: *common_env | ||
plugins: *common_plugins | ||
plugins: [$CI_TOOLKIT_PLUGIN] | ||
agents: | ||
queue: mac | ||
env: | ||
IMAGE_ID: $IMAGE_ID |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
|
||
# This file is `source`'d before calling `buildkite-agent pipeline upload`, and can be used | ||
# to set up some variables that will be interpolated in the `.yml` pipeline before uploading it. | ||
|
||
# The ~> modifier is not currently used, but we check for it just in case | ||
XCODE_VERSION=$(sed -E -n 's/^(~> )?(.*)/xcode-\2/p' .xcode-version) | ||
CI_TOOLKIT_PLUGIN_VERSION="3.4.2" | ||
|
||
export IMAGE_ID="$XCODE_VERSION" | ||
export CI_TOOLKIT_PLUGIN="automattic/a8c-ci-toolkit#$CI_TOOLKIT_PLUGIN_VERSION" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
15.4 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
2.22 | ||
----- | ||
|
||
|
||
2.21 | ||
----- | ||
- Added shortcuts to Simplenote Mac!! | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
• Behind-the-scenes reliability improvements | ||
- Added shortcuts to Simplenote Mac!! | ||
- New Magic Link Authentication support |
Oops, something went wrong.