We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b359234 commit c9bee83Copy full SHA for c9bee83
1 file changed
.github/workflows/mcstas-conda-nightly.yml
@@ -16,13 +16,15 @@ jobs:
16
fail-fast: false
17
matrix:
18
include:
19
- - { os: ubuntu-latest }
20
- - { os: ubuntu-24.04-arm }
21
- - { os: macos-latest }
22
- - { os: windows-latest }
23
- - { os: windows-11-arm }
24
-
25
- - name: Setup python
+ - { os: ubuntu-latest, CC: clang, CXX: clang++, python: '3.12', mpi: 'openmpi' }
+ - { os: ubuntu-latest, CC: clang, CXX: clang++, python: '3.12', mpi: 'mpich' }
+ - { os: ubuntu-latest, CC: gcc, CXX: g++, python: '3.12', mpi: 'openmpi' }
+ - { os: ubuntu-latest, CC: gcc, CXX: g++, python: '3.12', mpi: 'mpich' }
+ #- { os: macos-latest, CC: clang, CXX: clang++, python: '3.12', mpi: 'openmpi' }
+ - { os: macos-latest, CC: clang, CXX: clang++, python: '3.12', mpi: 'mpich' }
+ - { os: windows-latest, CC: gcc, CXX: g++, python: '3.12', mpi: 'msmpi' }
26
+
27
+ - name: Setup mamba
28
uses: mamba-org/setup-micromamba@v2
29
with:
30
environment-file: environment.yml
0 commit comments