Hi, Am Samstag, dem 04.09.2021 um 09:06 -0500 schrieb Eric Bresie: > Not sure this is an issue with the build or something else, but when trying > to unzip with 7-zip, there was a warning popping up indicating "CRC failed: > netbeans\ide\modules\ext\jaxb-xjc.jar" >
your download is broken. Run sha512sum on the downloaded ZIP and compare with the email. Here is a basic check on linux: matthias@enterprise:~/Schreibtisch/x$ wget https://ci-builds.apache.org/job/Netbeans/job/netbeans-TLP/job/netbeans/job/release125/9/artifact/dist/netbeans/netbeans-12.5-beta3-bin.zip --2021-09-04 18:27:47-- https://ci-builds.apache.org/job/Netbeans/job/netbeans-TLP/job/netbeans/job/release125/9/artifact/dist/netbeans/netbeans-12.5-beta3-bin.zip Auflösen des Hostnamens ci-builds.apache.org (ci-builds.apache.org) … 2a01:4f9:4a:4fd5::2, 95.217.192.195 Verbindungsaufbau zu ci-builds.apache.org (ci-builds.apache.org)|2a01:4f9:4a:4fd5::2|:443 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 Länge: 431308934 (411M) [application/zip] Wird in ‘netbeans-12.5-beta3-bin.zip’ gespeichert. netbeans-12.5-beta3-bin.zip 100%[===============================================================================================================================>] 411,33M 54,8MB/s in 7,8s 2021-09-04 18:27:56 (52,6 MB/s) - ‘netbeans-12.5-beta3-bin.zip’ gespeichert [431308934/431308934] matthias@enterprise:~/Schreibtisch/x$ sha512sum netbeans-12.5-beta3-bin.zip deb747d085b187bb30f7007704c0f8a9c51300120ea751161b93cabcbc36b9d2bfab7e209a5c578669bd4ebe1b8755b9d4ddcf0a23a5ff8bf99411228e8a8668 netbeans-12.5-beta3-bin.zip matthias@enterprise:~/Schreibtisch/x$ unzip netbeans-12.5-beta3-bin.zip > unzip.log # No errors reported in file or on STDERR matthias@enterprise:~/Schreibtisch/x$ unzip -t netbeans/ide/modules/ext/jaxb/jaxb-xjc.jar > check.log matthias@enterprise:~/Schreibtisch/x$ head -n 10 check.log Archive: netbeans/ide/modules/ext/jaxb/jaxb-xjc.jar testing: META-INF/MANIFEST.MF OK testing: META-INF/ OK testing: META-INF/maven/ OK testing: META-INF/maven/org.glassfish.jaxb/ OK testing: META-INF/maven/org.glassfish.jaxb/xsom/ OK testing: META-INF/maven/org.glassfish.jaxb/jaxb-xjc/ OK testing: META-INF/maven/org.glassfish.jaxb/codemodel/ OK testing: META-INF/maven/com.sun.istack/ OK testing: META-INF/maven/com.sun.istack/istack-commons-tools/ OK matthias@enterprise:~/Schreibtisch/x$ tail -n 10 check.log testing: complexType.rng OK testing: element.rng OK testing: include.rng OK testing: modelGroup.rng OK testing: simpleType.rng OK testing: xmlschema.rng OK testing: META-INF/maven/com.sun.xml.bind/jaxb-xjc/pom.xml OK testing: META-INF/maven/com.sun.xml.bind/jaxb-xjc/pom.properties OK testing: module-info.class OK No errors detected in compressed data of netbeans/ide/modules/ext/jaxb/jaxb-xjc.jar. matthias@enterprise:~/Schreibtisch/x$ As you can see, the SHA512 sum matches and there is no error reported when expanding netbeans-12.5-beta3-bin.zip. The contained jaxb-xjc.jar tests cleanly (-t checks recorded CRC vs. the realy CRC). Greetings Matthias --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
