Skip to content

Commit

Permalink
Merge pull request #60 from buildkite/buildkite-runner-migration
Browse files Browse the repository at this point in the history
Add buildkite pipeline file
  • Loading branch information
DechengMa committed Mar 5, 2024
2 parents 73c3228 + 02ad4bb commit c891f70
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
steps:

- label: ":swift: Tests (Xcode {{matrix.xcode_version}})"
key: swift-test
command: "swift test --parallel"
branches:
- "main"
- "buildkite-runner-migration"
agents:
os: "macos"
env:
DEVELOPER_DIR: "/Applications/Xcode_{{matrix.xcode_version}}.app/Contents/Developer"
matrix:
setup:
xcode_version:
- "15.2"
- "14.3.1"

- label: ":swift: Build (Xcode {{matrix.xcode_version}})"
key: swift-build
depends_on: swift-test
command: "swift build --configuration release"
branches:
- "main"
- "buildkite-runner-migration"
agents:
os: "macos"
env:
DEVELOPER_DIR: "/Applications/Xcode_{{matrix.xcode_version}}.app/Contents/Developer"
matrix:
setup:
xcode_version:
- "15.2"
- "14.3.1"

0 comments on commit c891f70

Please sign in to comment.