We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db9fbf8 commit 6640eaeCopy full SHA for 6640eae
.github/workflows/unittest-ctsm.yml
@@ -19,11 +19,16 @@ jobs:
19
cd /CTSM
20
./bin/git-fleximod update
21
22
- # Install conda environment
+ # Install conda environment packages
23
+ - name: Install conda environment
24
+ run: |
25
+ conda env create --file -y ${{env.TESTING_DIR}}/testing.yml
26
- - name: Activate spack environment and run tests
27
+ - name: Activate spack and conda environments and run tests
28
run: |
29
+ conda activate testing
30
. /opt/spack-environment/activate.sh
31
+ echo "CONDA_PREFIX: $CONDA_PREFIX"
32
echo "NETCDF_FORTRAN_PATH: $NETCDF_FORTRAN_PATH"
33
echo "NETCDF_C_PATH: $NETCDF_C_PATH"
34
cd ${{env.TESTING_DIR}}
0 commit comments