Skip to content

Commit

Permalink
update hashes
Browse files Browse the repository at this point in the history
  • Loading branch information
CoolMineman committed Dec 30, 2022
1 parent 577bf3f commit 7ba2c3f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void compile() {
long s2 = System.currentTimeMillis() - s;
System.out.println(s2);
if (JvmUtil.CURRENT_JAVA_VERSION == 8) // TestMod.java produces different cp order in j8 and j17
TestUtil.assertSha256(b.jar, "daad101c55eaedccbe8b9650666c63f1e6a5541911c9e202aa71184a2366e4ad");
TestUtil.assertSha256(b.jar, "ad51e8ff297d02d7388ddc28f64f85bd5e960ab9120a1172ace969aa9a785835");
} catch (Exception e) {
e.printStackTrace();
throw e;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import io.github.coolcrabs.brachyura.fabric.FabricContext.ModDependencyCollector;
import io.github.coolcrabs.brachyura.minecraft.Minecraft;
import io.github.coolcrabs.brachyura.minecraft.VersionMeta;
import io.github.coolcrabs.brachyura.util.JvmUtil;
import net.fabricmc.mappingio.tree.MappingTree;

public class NoMixinProjectTest {
Expand Down Expand Up @@ -56,8 +57,8 @@ void compile() {
JavaJarDependency b = fabricProject.build();
long s2 = System.currentTimeMillis() - s;
System.out.println(s2);
// Seems to work accross java versions for now
TestUtil.assertSha256(b.jar, "51f89d5ffdbae7c6a861168d12f7a4b852dbbd2ad2778342fe97224b12da454b");
if (JvmUtil.CURRENT_JAVA_VERSION == 8)
TestUtil.assertSha256(b.jar, "28752bdbdc185ee2629ccb79667737ca08bdcb3fef679fceac61564350689b69");
} catch (Exception e) {
e.printStackTrace();
throw e;
Expand Down

0 comments on commit 7ba2c3f

Please sign in to comment.