#!/usr/bin/env bash

# (C) Copyright 2024- ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.

if [[ $BASH_SOURCE = */* ]]; then
    SOURCE_DIR=${BASH_SOURCE%/*}
else
    SOURCE_DIR=.
fi

ARTIFACTS_DIR=${ARTIFACTS_DIR:-"${SOURCE_DIR}/artifacts"}

# Download dependencies for Python packages in this repository
cmake \
    -DWHEELS_DIR="${ARTIFACTS_DIR}" -DREQUIREMENT_SPEC="${SOURCE_DIR}${LOKI_INSTALL_OPTIONS:-}" \
    -DLOKI_WHEEL_ARCH="${LOKI_WHEEL_ARCH:-None}" -DLOKI_WHEEL_PYTHON_VERSION="${LOKI_WHEEL_PYTHON_VERSION:-None}" \
    -P "${SOURCE_DIR}/cmake/loki_get_python_wheels.cmake"

cmake \
    -DWHEELS_DIR="${ARTIFACTS_DIR}" -DREQUIREMENT_SPEC="${SOURCE_DIR}/lint_rules" \
    -DLOKI_WHEEL_ARCH="${LOKI_WHEEL_ARCH:-None}" -DLOKI_WHEEL_PYTHON_VERSION="${LOKI_WHEEL_PYTHON_VERSION:-None}" \
    -P "${SOURCE_DIR}/cmake/loki_get_python_wheels.cmake"
