Skip to content

Commit

Permalink
Merge branch 'v2.8' into v2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
GiovanniBussi committed Apr 4, 2024
2 parents 5cb7766 + c634592 commit a00cf1d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04 , macos-12]
os: [ubuntu-20.04 , macos-12, macos-14 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 2 additions & 5 deletions conda/plumed/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
CONDA_BUILD_SYSROOT:
- /opt/MacOSX10.9.sdk # [osx]
libblas:
- 3.8 *netlib
liblapack:
- 3.8.0 *netlib
- /opt/MacOSX10.9.sdk # [osx and x86_64]
- /opt/MacOSX11.0.sdk # [osx and arm64]
3 changes: 2 additions & 1 deletion conda/py-plumed/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
CONDA_BUILD_SYSROOT:
- /opt/MacOSX10.9.sdk # [osx]
- /opt/MacOSX10.9.sdk # [osx and x86_64]
- /opt/MacOSX11.0.sdk # [osx and arm64]
python:
- 3.8
- 3.9
Expand Down
13 changes: 2 additions & 11 deletions conda/run-conda-upload.sh
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@
#! /usr/bin/env bash

if [[ "$(uname)" == Linux ]]; then
OS_NAME=linux
elif [[ "$(uname)" == "Darwin" ]]; then
OS_NAME=osx
else
echo "Unsupported system $(uname)"
exit 1
fi

CONDA_USER=plumed # the conda channel
if test -n "$TRAVIS_REPO_SLUG" ; then
CONDA_USER="${TRAVIS_REPO_SLUG%/*}"
fi

if [[ -n "$CONDA_UPLOAD_TOKEN" ]]; then
anaconda -t $CONDA_UPLOAD_TOKEN upload -u $CONDA_USER -l $CONDA_LABEL $CONDA_PREFIX/conda-bld/$OS_NAME-64/plumed*.tar.bz2 --force
anaconda -t $CONDA_UPLOAD_TOKEN upload -u $CONDA_USER -l $CONDA_LABEL $CONDA_PREFIX/conda-bld/$OS_NAME-64/py-plumed*.tar.bz2 --force
anaconda -t $CONDA_UPLOAD_TOKEN upload -u $CONDA_USER -l $CONDA_LABEL $CONDA_PREFIX/conda-bld/*/plumed*.tar.bz2 --force
anaconda -t $CONDA_UPLOAD_TOKEN upload -u $CONDA_USER -l $CONDA_LABEL $CONDA_PREFIX/conda-bld/*/py-plumed*.tar.bz2 --force
fi


Expand Down

0 comments on commit a00cf1d

Please sign in to comment.