diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml new file mode 100755 index 0000000..d609fcd --- /dev/null +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -0,0 +1,52 @@ +# This file was generated automatically from conda-smithy. To update this configuration, +# update the conda-forge.yml and/or the recipe/meta.yaml. +# -*- mode: yaml -*- + +jobs: +- job: win + pool: + vmImage: windows-2022 + strategy: + matrix: + win_64_: + CONFIG: win_64_ + UPLOAD_PACKAGES: 'True' + timeoutInMinutes: 360 + variables: + CONDA_BLD_PATH: D:\\bld\\ + UPLOAD_TEMP: D:\\tmp + + steps: + + - task: PythonScript@0 + displayName: 'Download Miniforge' + inputs: + scriptSource: inline + script: | + import urllib.request + url = 'https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Windows-x86_64.exe' + path = r"$(Build.ArtifactStagingDirectory)/Miniforge.exe" + urllib.request.urlretrieve(url, path) + + - script: | + start /wait "" %BUILD_ARTIFACTSTAGINGDIRECTORY%\Miniforge.exe /InstallationType=JustMe /RegisterPython=0 /S /D=C:\Miniforge + displayName: Install Miniforge + + - powershell: Write-Host "##vso[task.prependpath]C:\Miniforge\Scripts" + displayName: Add conda to PATH + + - script: | + call ".scripts\run_win_build.bat" + displayName: Run Windows build + env: + PYTHONUNBUFFERED: 1 + CONFIG: $(CONFIG) + CI: azure + flow_run_id: azure_$(Build.BuildNumber).$(System.JobAttempt) + remote_url: $(Build.Repository.Uri) + sha: $(Build.SourceVersion) + UPLOAD_PACKAGES: $(UPLOAD_PACKAGES) + UPLOAD_TEMP: $(UPLOAD_TEMP) + BINSTAR_TOKEN: $(BINSTAR_TOKEN) + FEEDSTOCK_TOKEN: $(FEEDSTOCK_TOKEN) + STAGING_BINSTAR_TOKEN: $(STAGING_BINSTAR_TOKEN) \ No newline at end of file diff --git a/.ci_support/win_64_.yaml b/.ci_support/win_64_.yaml new file mode 100644 index 0000000..7764528 --- /dev/null +++ b/.ci_support/win_64_.yaml @@ -0,0 +1,20 @@ +bzip2: +- '1' +c_compiler: +- vs2019 +c_stdlib: +- vs +c_stdlib_version: +- '2019' +channel_sources: +- conda-forge +channel_targets: +- conda-forge main +cxx_compiler: +- vs2019 +libcblas: +- 3.9 *netlib +target_platform: +- win-64 +zlib: +- '1.2' diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 59c7cdd..aef32ea 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @jschueller @tkralphs @wolfv \ No newline at end of file +* @jpfeuffer @jschueller @tkralphs @wolfv \ No newline at end of file diff --git a/.scripts/run_win_build.bat b/.scripts/run_win_build.bat new file mode 100755 index 0000000..6d54697 --- /dev/null +++ b/.scripts/run_win_build.bat @@ -0,0 +1,125 @@ +:: PLEASE NOTE: This script has been automatically generated by conda-smithy. Any changes here +:: will be lost next time ``conda smithy rerender`` is run. If you would like to make permanent +:: changes to this script, consider a proposal to conda-smithy so that other feedstocks can also +:: benefit from the improvement. + +:: Note: we assume a Miniforge installation is available + +:: INPUTS (required environment variables) +:: CONFIG: name of the .ci_support/*.yaml file for this job +:: CI: azure, github_actions, or unset +:: UPLOAD_PACKAGES: true or false +:: UPLOAD_ON_BRANCH: true or false + +setlocal enableextensions enabledelayedexpansion + +call :start_group "Configuring conda" + +:: Activate the base conda environment +call activate base +:: Configure the solver +set "CONDA_SOLVER=libmamba" +if !errorlevel! neq 0 exit /b !errorlevel! +set "CONDA_LIBMAMBA_SOLVER_NO_CHANNELS_FROM_INSTALLED=1" + +:: Provision the necessary dependencies to build the recipe later +echo Installing dependencies +mamba.exe install "python=3.10" pip mamba conda-build conda-forge-ci-setup=4 "conda-build>=24.1" -c conda-forge --strict-channel-priority --yes +if !errorlevel! neq 0 exit /b !errorlevel! + +:: Set basic configuration +echo Setting up configuration +setup_conda_rc .\ ".\recipe" .\.ci_support\%CONFIG%.yaml +if !errorlevel! neq 0 exit /b !errorlevel! +echo Running build setup +CALL run_conda_forge_build_setup + + +if !errorlevel! neq 0 exit /b !errorlevel! + +if EXIST LICENSE.txt ( + echo Copying feedstock license + copy LICENSE.txt "recipe\\recipe-scripts-license.txt" +) +if NOT [%HOST_PLATFORM%] == [%BUILD_PLATFORM%] ( + if [%CROSSCOMPILING_EMULATOR%] == [] ( + set "EXTRA_CB_OPTIONS=%EXTRA_CB_OPTIONS% --no-test" + ) +) + +if NOT [%flow_run_id%] == [] ( + set "EXTRA_CB_OPTIONS=%EXTRA_CB_OPTIONS% --extra-meta flow_run_id=%flow_run_id% remote_url=%remote_url% sha=%sha%" +) + +call :end_group + +:: Build the recipe +echo Building recipe +conda-build.exe "recipe" -m .ci_support\%CONFIG%.yaml --suppress-variables %EXTRA_CB_OPTIONS% +if !errorlevel! neq 0 exit /b !errorlevel! + +:: Prepare some environment variables for the upload step +if /i "%CI%" == "github_actions" ( + set "FEEDSTOCK_NAME=%GITHUB_REPOSITORY:*/=%" + set "GIT_BRANCH=%GITHUB_REF:refs/heads/=%" + if /i "%GITHUB_EVENT_NAME%" == "pull_request" ( + set "IS_PR_BUILD=True" + ) else ( + set "IS_PR_BUILD=False" + ) + set "TEMP=%RUNNER_TEMP%" +) +if /i "%CI%" == "azure" ( + set "FEEDSTOCK_NAME=%BUILD_REPOSITORY_NAME:*/=%" + set "GIT_BRANCH=%BUILD_SOURCEBRANCHNAME%" + if /i "%BUILD_REASON%" == "PullRequest" ( + set "IS_PR_BUILD=True" + ) else ( + set "IS_PR_BUILD=False" + ) + set "TEMP=%UPLOAD_TEMP%" +) + +:: Validate +call :start_group "Validating outputs" +validate_recipe_outputs "%FEEDSTOCK_NAME%" +if !errorlevel! neq 0 exit /b !errorlevel! +call :end_group + +if /i "%UPLOAD_PACKAGES%" == "true" ( + if /i "%IS_PR_BUILD%" == "false" ( + call :start_group "Uploading packages" + if not exist "%TEMP%\" md "%TEMP%" + set "TMP=%TEMP%" + upload_package --validate --feedstock-name="%FEEDSTOCK_NAME%" .\ ".\recipe" .ci_support\%CONFIG%.yaml + if !errorlevel! neq 0 exit /b !errorlevel! + call :end_group + ) +) + +exit + +:: Logging subroutines + +:start_group +if /i "%CI%" == "github_actions" ( + echo ::group::%~1 + exit /b +) +if /i "%CI%" == "azure" ( + echo ##[group]%~1 + exit /b +) +echo %~1 +exit /b + +:end_group +if /i "%CI%" == "github_actions" ( + echo ::endgroup:: + exit /b +) +if /i "%CI%" == "azure" ( + echo ##[endgroup] + exit /b +) +exit /b \ No newline at end of file diff --git a/README.md b/README.md index 81c673d..832817c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ About coin-or-utils-feedstock Feedstock license: [BSD-3-Clause](https://github.com/conda-forge/coin-or-utils-feedstock/blob/main/LICENSE.txt) -Home: https://projects.coin-or.org/CoinUtils +Home: https://github.com/coin-or/CoinUtils Package license: EPL-2.0 @@ -83,6 +83,13 @@ Current build status variant + + win_64 + + + variant + + @@ -212,6 +219,7 @@ In order to produce a uniquely identifiable distribution: Feedstock Maintainers ===================== +* [@jpfeuffer](https://github.com/jpfeuffer/) * [@jschueller](https://github.com/jschueller/) * [@tkralphs](https://github.com/tkralphs/) * [@wolfv](https://github.com/wolfv/) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 33a441c..e5306da 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -4,4 +4,5 @@ jobs: - template: ./.azure-pipelines/azure-pipelines-linux.yml - - template: ./.azure-pipelines/azure-pipelines-osx.yml \ No newline at end of file + - template: ./.azure-pipelines/azure-pipelines-osx.yml + - template: ./.azure-pipelines/azure-pipelines-win.yml \ No newline at end of file diff --git a/recipe/bld.bat b/recipe/bld.bat new file mode 100644 index 0000000..b526205 --- /dev/null +++ b/recipe/bld.bat @@ -0,0 +1,11 @@ +copy "%RECIPE_DIR%\build.sh" . +set PREFIX=%PREFIX:\=/% +set LIBRARY_PREFIX=%LIBRARY_PREFIX:\=/% +set SRC_DIR=%SRC_DIR:\=/% +set MSYSTEM=MINGW%ARCH% +set MSYS2_PATH_TYPE=inherit +set CHERE_INVOKING=1 +set BUILD_PLATFORM=win-64 + + +bash -lc "./build.sh" diff --git a/recipe/build.sh b/recipe/build.sh index 88e404d..a136ac4 100644 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -1,32 +1,36 @@ #!/usr/bin/env bash -# Get an updated config.sub and config.guess -cp $BUILD_PREFIX/share/gnuconfig/config.* ./CoinUtils -cp $BUILD_PREFIX/share/gnuconfig/config.* . -set -e -UNAME="$(uname)" -export CFLAGS="${CFLAGS} -O3" -export CXXFLAGS="${CXXFLAGS} -O3" -export CXXFLAGS="${CXXFLAGS//-std=c++17/-std=c++11}" +set -e -if [ "${UNAME}" == "Linux" ]; then - export FLIBS="-lgcc_s -lgcc -lstdc++ -lm" +if [ ! -z ${LIBRARY_PREFIX+x} ]; then + USE_PREFIX=$LIBRARY_PREFIX +else + USE_PREFIX=$PREFIX fi -# Use only 1 thread with OpenBLAS to avoid timeouts on CIs. -# This should have no other affect on the build. A user -# should still be able to set this (or not) to a different -# value at run-time to get the expected amount of parallelism. -export OPENBLAS_NUM_THREADS=1 - -WITH_BLAS_LIB="-L${PREFIX}/lib -lblas" -WITH_LAPACK_LIB="-L${PREFIX}/lib -llapack" +if [[ "${target_platform}" == win-* ]]; then + EXTRA_FLAGS="--enable-msvc" + BLAS_LIB="${LIBRARY_PREFIX}/lib/cblas.lib" + LAPACK_LIB="${LIBRARY_PREFIX}/lib/lapack.lib" +else + # Get an updated config.sub and config.guess (for mac arm and lnx aarch64) + cp $BUILD_PREFIX/share/gnuconfig/config.* ./CoinUtils + cp $BUILD_PREFIX/share/gnuconfig/config.* . + BLAS_LIB="-L${PREFIX}/lib -lblas" + LAPACK_LIB="-L${PREFIX}/lib -llapack" +fi ./configure \ - --prefix="${PREFIX}" \ - --exec-prefix="${PREFIX}" \ - --with-blas-lib="${WITH_BLAS_LIB}" \ - --with-lapack-lib="${WITH_LAPACK_LIB}" \ + --prefix="${USE_PREFIX}" \ + --exec-prefix="${USE_PREFIX}" \ + --with-blas-lib="${BLAS_LIB}" \ + --with-lapack-lib="${LAPACK_LIB}" \ + ${EXTRA_FLAGS} || cat CoinUtils/config.log make -j "${CPU_COUNT}" -make install \ No newline at end of file + +if [[ "$CONDA_BUILD_CROSS_COMPILATION" != "1" ]]; then + make test +fi + +make install diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 52c8c37..721b1c0 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -13,35 +13,44 @@ source: build: number: 0 - skip: true # [win] run_exports: - {{ pin_subpackage(name, min_pin='x.x', max_pin='x.x') }} requirements: build: - - gnuconfig # [unix] + - gnuconfig - {{ compiler('c') }} - {{ compiler('cxx') }} - - {{ compiler('fortran') }} - - pkg-config + - {{ compiler('fortran') }} # [unix] + - pkg-config # [unix] - make # [unix] + - m2-make # [win] + - m2-pkg-config # [win] + - m2-grep # [win] + - m2-sed # [win] + - m2-bash # [win] + - m2-base # [win] + host: - - zlib - - bzip2 - - libblas + - blas-devel + - libblas # [unix] - libcblas - liblapack - - liblapacke + - liblapacke # [unix] + - zlib + - bzip2 + run_constrained: - coincbc * *_metapackage test: commands: - - test -f $PREFIX/lib/libCoinUtils${SHLIB_EXT} - - test -f $PREFIX/include/coin/CoinSort.hpp - + - test -f $PREFIX/lib/libCoinUtils${SHLIB_EXT} # [unix] + - test -f $PREFIX/include/coin/CoinSort.hpp # [unix] + - if not exist %LIBRARY_LIB%/libCoinUtils.lib exit 1 # [win] + - if not exist %LIBRARY_INC%/coin/CoinSort.hpp exit 1 # [win] about: - home: https://projects.coin-or.org/CoinUtils + home: https://github.com/coin-or/CoinUtils dev_url: https://github.com/coin-or/CoinUtils license: EPL-2.0 license_family: OTHER @@ -65,3 +74,4 @@ extra: - wolfv - tkralphs - jschueller + - jpfeuffer