From aeef473d2254d3f872fa431ac1a6a6b912282808 Mon Sep 17 00:00:00 2001 From: Petros Paraskevopoulos Date: Wed, 5 Feb 2025 12:29:41 +0200 Subject: [PATCH] CI: Build with and without cc side-by-side and build cache --- .buildkite/pipeline.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 1612907b9b7..78871755d03 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -5,7 +5,7 @@ agents: queue: "android" steps: - - label: "🛠 Assemble with CC [No Build Cache]" + - label: "🛠 Assemble with CC" command: | echo "--- :rubygems: Setting up Gems" install_gems @@ -13,11 +13,11 @@ steps: echo "--- :closed_lock_with_key: Installing Secrets" bundle exec fastlane run configure_apply - echo "--- 🛠 Build with CC [No Build Cache]" - ./gradlew assembleDebug --no-build-cache + echo "--- 🛠 Build with CC" + ./gradlew assembleDebug plugins: [ $CI_TOOLKIT ] - - label: "🛠 Assemble without CC [No Build Cache]" + - label: "🛠 Assemble without CC" command: | echo "--- :rubygems: Setting up Gems" install_gems @@ -25,6 +25,6 @@ steps: echo "--- :closed_lock_with_key: Installing Secrets" bundle exec fastlane run configure_apply - echo "--- 🛠 Build without CC [No Build Cache]" - ./gradlew assembleDebug --no-build-cache --no-configuration-cache + echo "--- 🛠 Build without CC" + ./gradlew assembleDebug --no-configuration-cache plugins: [ $CI_TOOLKIT ]