Skip to content

Commit

Permalink
CI: Build with and without cc side-by-side and build cache + restore
Browse files Browse the repository at this point in the history
  • Loading branch information
ParaskP7 committed Feb 5, 2025
1 parent ab2b8bb commit 2ae773c
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,7 +5,7 @@ agents:
queue: "android"

steps:
- label: "πŸ›  Assemble with CC [No Build Cache + With Restore]"
- label: "πŸ›  Assemble with CC [With Restore]"
command: |
echo "--- :rubygems: Setting up Gems"
install_gems
Expand All @@ -15,11 +15,11 @@ steps:
.buildkite/commands/restore-cache.sh
echo "--- πŸ›  Build with CC [No Build Cache + With Restore]"
./gradlew assembleDebug --no-build-cache
echo "--- πŸ›  Build with CC [With Restore]"
./gradlew assembleDebug
plugins: [ $CI_TOOLKIT ]

- label: "πŸ›  Assemble without CC [No Build Cache + With Restore]"
- label: "πŸ›  Assemble without CC [With Restore]"
command: |
echo "--- :rubygems: Setting up Gems"
install_gems
Expand All @@ -29,6 +29,6 @@ steps:
.buildkite/commands/restore-cache.sh
echo "--- πŸ›  Build without CC [No Build Cache + With Restore]"
./gradlew assembleDebug --no-build-cache --no-configuration-cache
echo "--- πŸ›  Build without CC [With Restore]"
./gradlew assembleDebug --no-configuration-cache
plugins: [ $CI_TOOLKIT ]

0 comments on commit 2ae773c

Please sign in to comment.