Skip to content

Commit a576fea

Browse files
ci
1 parent e2be1c3 commit a576fea

File tree

2 files changed

+1
-31
lines changed

2 files changed

+1
-31
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -34,33 +34,3 @@ jobs:
3434
conda:
3535
uses: ./.github/workflows/condaWF.yml
3636
secrets: inherit
37-
strategy:
38-
fail-fast: false
39-
matrix:
40-
os: [ubuntu-22.04, macos-14 ]
41-
runs-on: ${{ matrix.os }}
42-
steps:
43-
- uses: actions/checkout@v4
44-
- name: Install conda
45-
run: |
46-
curl -LO https://raw.githubusercontent.com/GiovanniBussi/conda-ci/master/conda-ci
47-
source ./conda-ci install
48-
source ./conda-ci install-conda-build
49-
- name: Build PLUMED
50-
run: |
51-
source activate base
52-
export VERSION=none
53-
if [[ $GITHUB_REF == "refs/tags/"* ]]; then
54-
VERSION=${GITHUB_REF#refs/tags/}
55-
VERSION=${VERSION//-/_}
56-
VERSION=${VERSION#v}
57-
fi
58-
make -C conda
59-
- name: Deploy
60-
env:
61-
CONDA_UPLOAD_TOKEN: ${{ secrets.CONDA_UPLOAD_TOKEN }}
62-
if: ${{ startsWith( github.ref , 'refs/tags/' ) }}
63-
run: |
64-
source activate base
65-
export CONDA_LABEL=tag
66-
make -C conda upload

.github/workflows/condaWF.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
os: [ubuntu-22.04 , macos-13 , macos-14 ]
21+
os: [ubuntu-22.04 , macos-14 ]
2222
runs-on: ${{ matrix.os }}
2323
steps:
2424
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)