We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a0ac38 commit 8256598Copy full SHA for 8256598
2 files changed
.ado/scripts/xcodebuild.sh
@@ -23,7 +23,7 @@ build_cmd=$(
23
24
)
25
26
-if [[ "$CCACHE_DISABLE" != "1" ]]; then
+if [[ "$USE_CCACHE" == "1" ]]; then
27
if ! command -v ccache 1> /dev/null; then
28
brew install ccache
29
fi
@@ -45,6 +45,6 @@ fi
45
46
eval "$build_cmd" | xcbeautify --report junit
47
48
49
ccache --show-stats --verbose
50
.github/workflows/microsoft-build-rntester.yml
@@ -66,7 +66,7 @@ jobs:
66
67
- name: Build ${{ matrix.scheme }}
68
env:
69
- CCACHE_DISABLE: 1
+ USE_CCACHE: 1
70
run: |
71
set -eox pipefail
72
.ado/scripts/xcodebuild.sh packages/rn-tester/RNTesterPods.xcworkspace ${{ matrix.sdk }} Debug ${{ matrix.scheme }} build
0 commit comments