Skip to content

Commit

Permalink
CI: Build with and without cc side-by-side and build cache
Browse files Browse the repository at this point in the history
  • Loading branch information
ParaskP7 committed Feb 4, 2025
1 parent 0a756b4 commit 50c5aec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ agents:
queue: "android"

steps:
- label: "πŸ›  Assemble with CC [No Build Cache]"
- label: "πŸ›  Assemble with CC"
command: |
echo "--- :rubygems: Setting up Gems"
install_gems
echo "--- :closed_lock_with_key: Installing Secrets"
bundle exec fastlane run configure_apply
echo "--- πŸ›  Build with CC [No Build Cache]"
./gradlew assembleJalapenoDebug --no-build-cache
echo "--- πŸ›  Build with CC"
./gradlew assembleJalapenoDebug
plugins: [ $CI_TOOLKIT ]

- label: "πŸ›  Assemble without CC [No Build Cache]"
- label: "πŸ›  Assemble without CC"
command: |
echo "--- :rubygems: Setting up Gems"
install_gems
echo "--- :closed_lock_with_key: Installing Secrets"
bundle exec fastlane run configure_apply
echo "--- πŸ›  Build without CC [No Build Cache]"
./gradlew assembleJalapenoDebug --no-build-cache --no-configuration-cache
echo "--- πŸ›  Build without CC"
./gradlew assembleJalapenoDebug --no-configuration-cache
plugins: [ $CI_TOOLKIT ]

0 comments on commit 50c5aec

Please sign in to comment.