Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .ci_support/migrations/mkl2026.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
__migrator:
build_number: 1
commit_message: Rebuild for mkl 2026
kind: version
migration_number: 1
migrator_ts: 1778116656.760406
mkl:
- '2026' # [not osx]
- '2023' # [osx]
mkl_devel:
- '2026' # [not osx]
- '2023' # [osx]
25 changes: 20 additions & 5 deletions .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,27 @@ jobs:
os: ubuntu
runs_on: ['ubuntu-latest']
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
tools_install_dir: ~/miniforge3
build_workspace_dir: build_artifacts
docker_run_args:
- CONFIG: linux_64_is_intelfalserunner_variantgnuwith_mpifalse
STORE_BUILD_ARTIFACTS: False
UPLOAD_PACKAGES: True
os: ubuntu
runs_on: ['ubuntu-latest']
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
tools_install_dir: ~/miniforge3
build_workspace_dir: build_artifacts
docker_run_args:
- CONFIG: linux_64_is_inteltruerunner_variantintelwith_mpifalse
STORE_BUILD_ARTIFACTS: False
UPLOAD_PACKAGES: True
os: ubuntu
runs_on: ['ubuntu-latest']
DOCKER_IMAGE: quay.io/condaforge/linux-anvil-x86_64:alma9
tools_install_dir: ~/miniforge3
build_workspace_dir: build_artifacts
docker_run_args:
steps:

- name: Checkout code
Expand All @@ -49,11 +58,13 @@ jobs:
id: build-linux
if: matrix.os == 'ubuntu'
env:
MINIFORGE_HOME: ${{ matrix.tools_install_dir }}
CONDA_BLD_PATH: ${{ matrix.build_workspace_dir }}
CONFIG: ${{ matrix.CONFIG }}
UPLOAD_PACKAGES: ${{ matrix.UPLOAD_PACKAGES }}
DOCKER_IMAGE: ${{ matrix.DOCKER_IMAGE }}
CI: github_actions
CONDA_FORGE_DOCKER_RUN_ARGS: "${{ matrix.CONDA_FORGE_DOCKER_RUN_ARGS }}"
CONDA_FORGE_DOCKER_RUN_ARGS: "${{ matrix.docker_run_args }}"
BINSTAR_TOKEN: ${{ secrets.BINSTAR_TOKEN }}
FEEDSTOCK_TOKEN: ${{ secrets.FEEDSTOCK_TOKEN }}
STAGING_BINSTAR_TOKEN: ${{ secrets.STAGING_BINSTAR_TOKEN }}
Expand All @@ -73,13 +84,17 @@ jobs:
else
export IS_PR_BUILD="False"
fi
export MINIFORGE_HOME="${MINIFORGE_HOME/#~/${HOME}}"
export CONDA_BLD_PATH="${CONDA_BLD_PATH/#~/${HOME}}"
echo "::endgroup::"
./.scripts/run_docker_build.sh

- name: Build on macOS
id: build-macos
if: matrix.os == 'macos'
env:
MINIFORGE_HOME: ${{ matrix.tools_install_dir }}
CONDA_BLD_PATH: ${{ matrix.build_workspace_dir }}
CONFIG: ${{ matrix.CONFIG }}
UPLOAD_PACKAGES: ${{ matrix.UPLOAD_PACKAGES }}
CI: github_actions
Expand All @@ -98,6 +113,8 @@ jobs:
else
export IS_PR_BUILD="False"
fi
export MINIFORGE_HOME="${MINIFORGE_HOME/#~/${HOME}}"
export CONDA_BLD_PATH="${CONDA_BLD_PATH/#~/${HOME}}"
./.scripts/run_osx_build.sh

- name: Build on windows
Expand All @@ -110,10 +127,8 @@ jobs:
set "sha=%GITHUB_SHA%"
call ".scripts\run_win_build.bat"
env:
# default value; make it explicit, as it needs to match with artefact
# generation below. Not configurable for now, can be revisited later
CONDA_BLD_PATH: C:\bld
MINIFORGE_HOME: ${{ contains(runner.arch, 'ARM') && 'C' || 'D' }}:\Miniforge
MINIFORGE_HOME: ${{ matrix.tools_install_dir }}
CONDA_BLD_PATH: ${{ matrix.build_workspace_dir }}
PYTHONUNBUFFERED: 1
CONFIG: ${{ matrix.CONFIG }}
CI: github_actions
Expand Down
2 changes: 1 addition & 1 deletion .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .scripts/run_osx_build.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 8 additions & 22 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

50 changes: 24 additions & 26 deletions recipe/recipe.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@

schema_version: 1

context:
name: runner
version: "2.0.0_20260512"
intel_version: "2026.0.0"

package:
name: "runner"
Expand All @@ -17,7 +15,7 @@ source:
sha256: c362553ae2aaaac7acea89ae2d3cf5a210fc0992943a9b39ad43d27208e420df

build:
number: 0
number: 1
string: "${{ runner_variant }}_h${{ hash }}_${{ build_number }}"
skip: not (linux or osx) or (is_intel and osx)

Expand All @@ -28,8 +26,8 @@ requirements:
- m4
- if: is_intel
then:
- ifx_linux-64 ==${{ intel_version }}
- dpcpp_linux-64 ==${{ intel_version }}
- ifx_linux-64
- dpcpp_linux-64
else:
- ${{ compiler('c') }}
- ${{ stdlib('c') }}
Expand All @@ -38,19 +36,19 @@ requirements:
host:
- if: is_intel
then:
- mkl ==${{ intel_version }}
- mkl-include ==${{ intel_version }}
- mkl-devel ==${{ intel_version }}
- mkl-static ==${{ intel_version }}
- intel-cmplr-lib-rt ==${{ intel_version }}
- mkl
- mkl-include
- mkl-devel
- mkl-static
- intel-cmplr-lib-rt
else:
- libblas
- liblapack
- fftw
# OpenMP libraries for GNU differ between Linux and OSX.
- if: not is_intel and linux
then:
- libgomp
- libgomp
- if: not is_intel and osx
then:
- llvm-openmp
Expand All @@ -65,17 +63,17 @@ requirements:
run:
- if: is_intel
then:
- mkl ==${{ intel_version }}
- intel-fortran-rt ==${{ intel_version }}
- intel-cmplr-lib-rt ==${{ intel_version }}
- mkl
- intel-fortran-rt
- intel-cmplr-lib-rt
else:
- libblas
- liblapack
- fftw
# OpenMP libraries for GNU differ between Linux and OSX.
- if: not is_intel and linux
then:
- libgomp
- libgomp
- if: not is_intel and osx
then:
- llvm-openmp
Expand All @@ -89,17 +87,17 @@ requirements:

tests:
- script:
- if: with_mpi
then:
- RuNNer_mpi.x --version
else:
- RuNNer.x --version
- if: is_intel and not with_mpi
then:
- ldd $(which RuNNer.x) | grep -i mkl
- if: is_intel and with_mpi
then:
- ldd $(which RuNNer_mpi.x) | grep -i mkl
- if: with_mpi
then:
- RuNNer_mpi.x --version
else:
- RuNNer.x --version
- if: is_intel and not with_mpi
then:
- ldd $(which RuNNer.x) | grep -i mkl
- if: is_intel and with_mpi
then:
- ldd $(which RuNNer_mpi.x) | grep -i mkl

about:
homepage: https://www.theochem2.ruhr-uni-bochum.de/tc/software/runner.html.en
Expand Down