File tree Expand file tree Collapse file tree 6 files changed +242
-227
lines changed Expand file tree Collapse file tree 6 files changed +242
-227
lines changed Original file line number Diff line number Diff line change 8
8
runs :
9
9
using : composite
10
10
steps :
11
+ - name : Set up Ccache
12
+ if : ${{ inputs.platform == 'ios' || inputs.platform == 'macos' }}
13
+ run : |
14
+ if ! command -v ccache 1> /dev/null; then
15
+ brew install ccache
16
+ fi
17
+
18
+ CCACHE_HOME=$(dirname $(dirname $(which ccache)))/opt/ccache
19
+
20
+ echo "CCACHE_DIR=$(git rev-parse --show-toplevel)/.ccache" >> $GITHUB_ENV
21
+
22
+ echo "CC=${CCACHE_HOME}/libexec/clang" >> $GITHUB_ENV
23
+ echo "CXX=${CCACHE_HOME}/libexec/clang++" >> $GITHUB_ENV
24
+ echo "CMAKE_C_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
25
+ echo "CMAKE_CXX_COMPILER_LAUNCHER=$(which ccache)" >> $GITHUB_ENV
26
+
27
+ ccache --zero-stats 1> /dev/null
28
+ shell : bash
11
29
- name : Set up Node.js
12
30
13
31
with :
Original file line number Diff line number Diff line change 7
7
schedule :
8
8
# nightly builds against react-native@nightly at 5:00
9
9
- cron : 0 5 * * *
10
+ env :
11
+ HOMEBREW_NO_INSTALL_CLEANUP : 1
10
12
jobs :
11
13
lint-commit :
12
14
name : " lint commit message"
Original file line number Diff line number Diff line change 1
1
tap 'homebrew/cask-versions'
2
2
brew 'clang-format'
3
3
brew 'ktlint'
4
- brew 'node '
4
+ brew 'n '
5
5
brew 'swiftformat'
6
6
brew 'swiftlint'
7
7
brew 'yarn'
Original file line number Diff line number Diff line change @@ -285,11 +285,11 @@ PODS:
285
285
- React-jsinspector (0.68.3)
286
286
- React-logger (0.68.3):
287
287
- glog
288
- - react-native-safe-area-context (4.3.1 ):
288
+ - react-native-safe-area-context (4.3.3 ):
289
289
- RCT-Folly
290
290
- RCTRequired
291
291
- RCTTypeSafety
292
- - React
292
+ - React-Core
293
293
- ReactCommon/turbomodule/core
294
294
- React-perflogger (0.68.3)
295
295
- React-RCTActionSheet (0.68.3):
@@ -549,7 +549,7 @@ SPEC CHECKSUMS:
549
549
React-jsiexecutor: a5043e9e1e1bd13b80b58b228c6901b3721a4f54
550
550
React-jsinspector: 86e89b9f135787a2e8eb74b3fc00ec61e9a80ae1
551
551
React-logger: f790bd10f86b38012e108fb4b564023602702270
552
- react-native-safe-area-context: 6c12e3859b6f27b25de4fee8201cfb858432d8de
552
+ react-native-safe-area-context: b456e1c40ec86f5593d58b275bd0e9603169daca
553
553
React-perflogger: fa15d1d29ff7557ee25ea48f7f59e65896fb3215
554
554
React-RCTActionSheet: e83515333352a3cc19c146e3c7a63a8a9269da8f
555
555
React-RCTAnimation: 8032daa2846e3db7ac28c4c5a207d0bfb5e1e3ad
You can’t perform that action at this time.
0 commit comments