diff --git a/B/biome/build_tarballs.jl b/B/biome/build_tarballs.jl index f0115474264..32911a6e3d3 100644 --- a/B/biome/build_tarballs.jl +++ b/B/biome/build_tarballs.jl @@ -3,20 +3,17 @@ using BinaryBuilder, Pkg name = "biome" -#version = v"2.3.5" -version = v"2.0.6" +version = v"2.4.8" # Collection of sources required to complete build sources = [ - # ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@2.3.5.tar.gz", - # "39c685ea028d5dd8db101b93c96a0956fb6f7846da93caa49231a62c612daa77"), - ArchiveSource("https://github.com/biomejs/biome/archive/refs/tags/@biomejs/biome@2.0.6.tar.gz", - "52d5e449346bfb15855a3bac85ba5d43b81d0fb1a99be9d4b7dca8c51521404c"), + GitSource("https://github.com/biomejs/biome.git", + "f4bf3411cc34ae6458b298a03c6255ac3cd00231"), # @biomejs/biome@2.4.8 ] # Bash recipe for building across all platforms script = raw""" -cd $WORKSPACE/srcdir/biome--biomejs-biome-*/ +cd $WORKSPACE/srcdir/biome* # The BIOME_VERSION stuff is some weird stuff you need to do. From # Biome's CONTRIBUTING.md about production builds: # @@ -53,6 +50,5 @@ dependencies = Dependency[] # Build the tarballs, and possibly a `build.jl` as well. build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; - #compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.91", - compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.87", - lock_microarchitecture=false) + compilers=[:c, :rust], julia_compat="1.6", preferred_rust_version=v"1.94", + lock_microarchitecture=false)