RFR: JDK-8218692 Switch to JCov build which supports byte code version 57
Alexandre (Shura) Iline
alexandre.iline at oracle.com
Fri Feb 8 21:26:13 UTC 2019
Hi.
Can you take a look on quick change to enable JCov runs for jdk/jdk.
The fix is to use a custom build of JCov:
diff -r 6268e0cdb008 make/conf/jib-profiles.js
--- a/make/conf/jib-profiles.js Wed Feb 06 16:25:58 2019 +0000
+++ b/make/conf/jib-profiles.js Fri Feb 08 05:19:34 2019 -0900
@@ -944,11 +944,17 @@
},
jcov: {
- server: "jpg",
- product: "jcov",
- version: "3.0",
- build_number: "b07",
- file: "bundles/jcov-3_0.zip",
+ // Until an official build of JCov is available, use custom
+ // build to support classfile version 57.
+ // See CODETOOLS-7902358 for more info.
+ // server: "jpg",
+ // product: "jcov",
+ // version: "3.0",
+ // build_number: "b07",
+ // file: "bundles/jcov-3_0.zip",
+ organization: common.organization,
+ revision: "3.0-57-support+1.0",
+ ext: "zip",
environment_name: "JCOV_HOME",
},
Thank you.
Shura
More information about the build-dev
mailing list