Update mantid dependency to latest Mantid stable 6.11 (#15) #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: conda packaging and deployment | |
on: | |
workflow_dispatch: | |
push: | |
branches: [qa, main] | |
tags: ['v*'] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
channels: mantid/label/main,conda-forge,defaults | |
mamba-version: "*" | |
environment-file: environment.yml | |
cache-environment-key: ${{ runner.os }}-env-${{ hashFiles('**/environment.yml') }} | |
cache-downloads-key: ${{ runner.os }}-downloads-${{ hashFiles('**/environment.yml') }} | |
- name: install additional dependencies | |
run: | | |
echo "installing additional dependencies from environment_development.yml" | |
- name: build conda package | |
run: | | |
# set up environment | |
cd conda.recipe | |
echo "versioningit $(versioningit ../)" | |
# conda channels could have been defined in the conda-incubator, but you can copy/paste the lines | |
# below to build the conda package in your locally | |
CHANNELS="--channel mantid/label/main --channel conda-forge --channel neutrons" | |
VERSION=$(versioningit ../) conda mambabuild $CHANNELS --output-folder . . | |
conda verify noarch/usansred*.tar.bz2 | |
- name: upload conda package to anaconda | |
shell: bash -l {0} | |
if: startsWith(github.ref, 'refs/tags/v') | |
env: | |
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | |
IS_RC: ${{ contains(github.ref, 'rc') }} | |
run: | | |
# label is main or rc depending on the tag-name | |
CONDA_LABEL="main" | |
if [ "${IS_RC}" = "true" ]; then CONDA_LABEL="rc"; fi | |
echo pushing ${{ github.ref }} with label $CONDA_LABEL | |
anaconda upload --label $CONDA_LABEL conda.recipe/noarch/usansred*.tar.bz2 |