Skip to content

v1.23.0

Latest
Compare
Choose a tag to compare
@roelstappers roelstappers released this 20 Apr 22:09

Script build_tarballs.jl below should be pushed to Yggdrasil which should publish tarballs automatically to JuliaBinaryWrappers

julia build_tarballs.jl --deploy=local    # (or --deploy to push  to Yggdrasil) 
$ cat build_tarballs.jl
# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder, Pkg

name = "eckit"
version = v"1.23.0"

# Collection of sources required to complete build
sources = [
    GitSource("https://github.com/ecmwf/eckit.git", "10132a8cd4aefbaffdf840a7bd951fc1e424f253"),
    GitSource("https://github.com/ecmwf/ecbuild.git", "bbfc1ea67ae07cde1e0acdb70d0bd8830ffc1e6b")
]

# Bash recipe for building across all platforms
script = raw"""
cd $WORKSPACE/srcdir/ecbuild
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=$prefix -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} -DCMAKE_BUILD_TYPE=Release ..
make
make install

cd $WORKSPACE/srcdir/eckit
mkdir build
cd build/
cmake -DCMAKE_INSTALL_PREFIX=$prefix -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} -DCMAKE_BUILD_TYPE=Release ..
make
make install

cd $WORKSPACE/srcdir/eckit
install_license LICENSE
"""

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = [
    Platform("x86_64", "linux"; libc = "glibc"),
    Platform("aarch64", "linux"; libc = "glibc"),
    Platform("powerpc64le", "linux"; libc = "glibc")
]

platforms = expand_cxxstring_abis(platforms)

# The products that we will ensure are always built
products = [
    LibraryProduct("libeckit", :eckit),
    LibraryProduct("libeckit_option", :option),
    LibraryProduct("libeckit_sql", :sql),
    LibraryProduct("libeckit_web", :web),
    LibraryProduct("libeckit_mpi", :mpi),
    LibraryProduct("libeckit_maths", :maths),
    LibraryProduct("libeckit_geometry", :geometry),
    LibraryProduct("libeckit_linalg", :linalg),
    ExecutableProduct("eckit-version", :version),
    ExecutableProduct("eckit-info", :info)
]

# Dependencies that must be installed before this package can be built
dependencies = Dependency[
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")