forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Download kotlin compiler JARs for Buck instead of checking them in (f…
…acebook#33209) Summary: Pull Request resolved: facebook#33209 Downloads Kotlin compiler JARs with Buck before starting docker build. This solution is slower than checking in JARs directly, but it allows to keep lighter size of the repo for people who want a complete checkout. Changelog: [Internal] - Update CI build to download Kotlin jars for buck Reviewed By: cortinico Differential Revision: D34582932 fbshipit-source-id: 290398579ce2a4d57c7af318c66526689db6073c
- Loading branch information
1 parent
6abbef1
commit fc9dec9
Showing
14 changed files
with
100 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file removed
BIN
-17.1 KB
ReactAndroid/src/main/third-party/kotlin/1.6.10/annotations-13.0.jar
Binary file not shown.
Binary file removed
BIN
-448 KB
ReactAndroid/src/main/third-party/kotlin/1.6.10/kotlin-annotation-processing.jar
Binary file not shown.
Binary file removed
BIN
-47.7 MB
ReactAndroid/src/main/third-party/kotlin/1.6.10/kotlin-compiler-embeddable.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-41.4 KB
ReactAndroid/src/main/third-party/kotlin/1.6.10/kotlin-script-runtime.jar
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/bash | ||
# Copyright (c) Meta Platforms, Inc. and affiliates. | ||
# | ||
# This source code is licensed under the MIT license found in the | ||
# LICENSE file in the root directory of this source tree. | ||
|
||
buck fetch //ReactAndroid/src/main/third-party/kotlin:kotlin-compiler-download | ||
|
||
BUCK_OUTPUT_FOLDER=$(buck build //ReactAndroid/src/main/third-party/kotlin:kotlin-compiler-download --show-output -v 0 | sed -E 's/^(.*) (.*)$/\2/g') | ||
|
||
mkdir -p "$KOTLIN_HOME" | ||
cp -R "$BUCK_OUTPUT_FOLDER/." "$KOTLIN_HOME" |