-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Add Tuist archive #165
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
base: ACI-4001-comp-cache-benchmark
Are you sure you want to change the base?
Conversation
- USE_DD_CACHE: $USE_DD_CACHE | ||
- USE_SPM: $USE_SPM | ||
- BENCHMARK_APP_NAME: $BENCHMARK_APP_NAME | ||
benchmark_tuist_build_baseline: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just reordered to be among all other tuist wfs
SummaryThis PR adds Tuist archive benchmarking workflows to bitrise.yml, implementing two new workflows for baseline and compilation cache testing. The changes include new benchmark workflows with xcodebuild commands for archiving the Tuist project. Walkthrough
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an AI-generated review. Please review it carefully.
Actionable comments posted: 2
#!/bin/bash | ||
set -ex | ||
xcodebuild -workspace Tuist.xcworkspace -scheme tuist build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐛 Bug
Scheme mismatch will cause build failure. The new Tuist archive workflows use '-scheme tuist' but all other Tuist workflows in this file use '-scheme TuistApp'. This inconsistency will likely result in build errors since the 'tuist' scheme may not exist or may not be the correct target for the benchmark.
🔄 Suggestion:
xcodebuild -workspace Tuist.xcworkspace -scheme tuist build | |
xcodebuild -workspace Tuist.xcworkspace -scheme TuistApp build |
#!/bin/bash | ||
set -ex | ||
xcodebuild -workspace Tuist.xcworkspace -scheme tuist build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🐛 Bug
Scheme mismatch will cause build failure. The new Tuist archive workflows use '-scheme tuist' but all other Tuist workflows in this file use '-scheme TuistApp'. This inconsistency will likely result in build errors since the 'tuist' scheme may not exist or may not be the correct target for the benchmark.
🔄 Suggestion:
xcodebuild -workspace Tuist.xcworkspace -scheme tuist build | |
xcodebuild -workspace Tuist.xcworkspace -scheme TuistApp build |
Copied building script from https://bitrise.atlassian.net/wiki/spaces/~932870153/pages/4053663842/LLVM+CAS+cache+internals#Benchmarks