Skip to content
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
10 changes: 4 additions & 6 deletions .buildkite/commands/build-for-testing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ if [[ "$APP" != "wordpress" && "$APP" != "jetpack" ]]; then
exit 1
fi

echo "--- :beer: Installing Homebrew Dependencies"
brew tap FelixHerrmann/tap
brew install swift-package-list
"$(dirname "${BASH_SOURCE[0]}")/install-swift-package-list.sh"

"$(dirname "${BASH_SOURCE[0]}")/shared-set-up.sh"

Expand All @@ -26,8 +24,8 @@ echo "--- :closed_lock_with_key: Installing Secrets"
bundle exec fastlane run configure_apply

echo "--- :hammer_and_wrench: Building"
bundle exec fastlane build_${APP}_for_testing
bundle exec fastlane "build_${APP}_for_testing"

echo "--- :arrow_up: Upload Build Products"
tar -cf build-products-${APP}.tar DerivedData/Build/Products/
upload_artifact build-products-${APP}.tar
tar -cf "build-products-${APP}.tar" DerivedData/Build/Products/
upload_artifact "build-products-${APP}.tar"
8 changes: 8 additions & 0 deletions .buildkite/commands/install-swift-package-list.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash -eu

echo "--- :beer::swift: Installing swift-package-list via Homebrew"
brew tap FelixHerrmann/tap
if brew help trust >/dev/null 2>&1; then
brew trust FelixHerrmann/tap
fi
brew install swift-package-list
Comment thread
Copilot marked this conversation as resolved.
6 changes: 4 additions & 2 deletions .buildkite/commands/shared-set-up-distribution.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
#!/bin/bash -eu

# Homebrew 6 ask-mode prompts before installing dependencies and hangs on the CI PTY.
export HOMEBREW_NO_ASK=1

echo "--- :beer: Installing Homebrew Dependencies"
# Sentry CLI needs to be up-to-date
brew upgrade sentry-cli

brew tap FelixHerrmann/tap
brew install swift-package-list
"$(dirname "${BASH_SOURCE[0]}")/install-swift-package-list.sh"

brew install imagemagick
brew install ghostscript
2 changes: 1 addition & 1 deletion .bundle/config
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ BUNDLE_PATH: "vendor/bundle"
BUNDLE_JOBS: "3"
BUNDLE_WITHOUT: "screenshots"
BUNDLE_RETRY: "3"
BUNDLE_SPECIFIC_PLATFORM: "false"

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This config is no longer used by Bundler

BUNDLE_FORCE_RUBY_PLATFORM: "true"
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.4.9
2 changes: 1 addition & 1 deletion .xcode-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
26.4.1
26.6
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -399,4 +399,4 @@ DEPENDENCIES
rubocop-rake (~> 0.7)

BUNDLED WITH
2.4.22
4.0.15