[ci] Use Java 11 version of Buck in tests

Reviewed By: ezgicicek

Differential Revision: D27734182

fbshipit-source-id: c3084ca66
master
Artem Pianykh 4 years ago committed by Facebook GitHub Bot
parent 9a2768d66d
commit e7efc38eb0

3
.gitignore vendored

@ -74,7 +74,8 @@ duplicates.txt
/configure
/Makefile.autoconf
/.buckversion
/.buck-java8
/.buck-java11
/.buckjavaversion
/*/.gitignore
/*/*/.gitignore

@ -830,7 +830,8 @@ endif
.PHONY: conf-clean
conf-clean: clean
$(REMOVE) .buck-java8
$(REMOVE) .buckjavaversion
$(REMOVE) .buck-java11
$(REMOVE) Makefile.autoconf
$(REMOVE) acinclude.m4
$(REMOVE) aclocal.m4

@ -337,9 +337,13 @@ AC_SUBST([ENABLE_OCAML_BINANNOT])
# We use Buck to run the Infer tests
AS_IF([test x"$is_facebook_tree" = x"yes"],
AC_MSG_CHECKING([which .buck-java8 to use])
cp "facebook/dependencies/dotbuck-java8" ".buck-java8"
AC_MSG_RESULT([facebook/dependencies/dotbuck-java8]))
AC_MSG_CHECKING([which .buckjavaversion to use])
cp "facebook/dependencies/dotbuckjavaversion" ".buckjavaversion"
AC_MSG_RESULT([facebook/dependencies/dotbuckjavaversion])
AC_MSG_CHECKING([which .buck-java11 to use])
cp "facebook/dependencies/dotbuck-java11" ".buck-java11"
AC_MSG_RESULT([facebook/dependencies/dotbuck-java11]))
AC_CHECK_TOOL([GETCONF], [getconf], [no])

Loading…
Cancel
Save