-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make reproducible builds from master branch #1024
Comments
It seems like you're using some wrong version of folly. Does run-android work for you? I would recommend to try to build for device/emulator using Android studio - what's how I used to build it. |
Script I've tried to call Download https://github.com/facebook/folly/archive/v2020.01.13.00.tar.gz
> Task :downloadFolly
> Task :prepareFolly def FOLLY_VERSION = reactProperties.getProperty("FOLLY_VERSION")
...
task downloadFolly(dependsOn: createNativeDepsDirectories, type: Download) {
src("https://github.com/facebook/folly/archive/v${FOLLY_VERSION}.tar.gz")
onlyIfNewer(true)
overwrite(false)
dest(new File(downloadsDir, "folly-${FOLLY_VERSION}.tar.gz"))
} which takes FOLLY_VERSION=2020.01.13.00 Is used the latest React Native version - now it is |
This is a related issue facebook/react-native#28298 |
After successfully generating react-native-reanimated-2.0.0-alpha.4.tgz I still see "Unsatisfied Link Error" for reanimated.so when try to use this reanimated package as dependency (using |
Fixes #1024 Solution was taken from facebook/react-native#28298. Change wrapNoInt template function invocation to it's code, after downloading folly
Description
Every time I try to build react-native-reanimated npm package from master it fails.
I use script
createNPMPackage.sh
, other ways didn't work. Being able to build complete npm package from master is very important, otherwise I can't test patches against master branch and can't verify they are working.It would be very good to have CI tests that check source code from master at least is building for iOS and Android.
The text was updated successfully, but these errors were encountered: