Skip to content

Commit a03f81c

Browse files
committed
Split conda injection in two tasks, try python 3.13 on Ubuntu
1 parent 687601b commit a03f81c

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/mcxtrace-conda-basictest.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
include:
21-
- { os: ubuntu-latest, python: '3.12', mpi: 'openmpi' }
22-
- { os: ubuntu-latest, python: '3.12', mpi: 'mpich' }
21+
- { os: ubuntu-latest, python: '3.13', mpi: 'openmpi' }
22+
- { os: ubuntu-latest, python: '3.13', mpi: 'mpich' }
2323
- { os: macos-latest, python: '3.12', mpi: 'openmpi' }
2424
- { os: macos-latest, python: '3.12', mpi: 'mpich' }
2525
- { os: windows-latest, python: '3.12', mpi: 'msmpi' }
@@ -52,10 +52,15 @@ jobs:
5252
channels: conda-forge
5353
python-version: ${{ matrix.python }}
5454

55-
- name: Setup conda
56-
id: setup-conda
55+
- name: Get conda dependency list
56+
id: conda-deps
5757
run: |
5858
./src/devel/bin/mccode-create-conda-yml -m mcxtrace -n mcxtrace -o dependencies.yml
59+
echo DONE
60+
61+
- name: Update conda
62+
id: update-conda
63+
run: |
5964
conda env update --file dependencies.yml
6065
echo DONE
6166

0 commit comments

Comments
 (0)