Skip to content

Commit

Permalink
Fix Buck ABI calculation for JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarr21 committed Apr 2, 2024
1 parent 6338b77 commit b45630e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
@SuppressWarnings("unused")
public class OkBuckExtension {

// Forked buck which works on bigsur
// https://github.com/raviagarwal7/buck/commits/8369cecf8b4a8d628f7852f0030587944f01bc19
private static final String DEFAULT_BUCK_BINARY_REPO = "com.github.raviagarwal7:buck";
private static final String DEFAULT_BUCK_BINARY_SHA = "8369cecf8b4a8d628f7852f0030587944f01bc19";
// Forked buck which works on bigsur & upgrades ASM to support JDK 17
// https://github.com/jbarr21/buck/commits/0d38f666be505b38b4913f7e3dea14d0d5212e1a
private static final String DEFAULT_BUCK_BINARY_REPO = "com.github.jbarr21:buck";
private static final String DEFAULT_BUCK_BINARY_SHA = "0d38f666be505b38b4913f7e3dea14d0d5212e1a";

/** Build Tools Version */
@Input public String buildToolVersion = "28.0.2";
Expand Down

0 comments on commit b45630e

Please sign in to comment.