Skip to content

Commit

Permalink
Merge pull request #248 from bugsnag/je/hotfix-bundle-install
Browse files Browse the repository at this point in the history
Add bundle install to relevant pipeline steps
joshedney authored Feb 26, 2024

Unverified

No user is associated with the committer email.
2 parents 9af7551 + d157a1f commit 2877cde
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -9,15 +9,21 @@ steps:
- group: ":hammer: Builds"
steps:
- label: "Carthage"
command: ./features/fixtures/carthage/build.sh
commands:
- bundle install
- ./features/fixtures/carthage/build.sh

- label: "CocoaPods"
command: pod lib lint BugsnagPerformance.podspec.json
commands:
- bundle install
- pod lib lint BugsnagPerformance.podspec.json

- label: "Example"
env:
XCODE_VERSION: 15.0.1
command: ./Example/build.sh
commands:
- bundle install
- ./Example/build.sh

- label: "Fixture"
key: ios_fixture

0 comments on commit 2877cde

Please sign in to comment.