libeigen/eigen!2509 Closes #2868 Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
12 lines
357 B
PowerShell
12 lines
357 B
PowerShell
# SPDX-FileCopyrightText: The Eigen Authors
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
echo "Running ${CI_JOB_NAME}"
|
|
|
|
# Print configuration variables.
|
|
Get-Variable EIGEN* | Format-Table -Wrap
|
|
Get-Variable CMAKE* | Format-Table -Wrap
|
|
|
|
# Run a custom before-script command.
|
|
if ("${EIGEN_CI_BEFORE_SCRIPT}") { Invoke-Expression -Command "${EIGEN_CI_BEFORE_SCRIPT}" }
|