diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 13e5fd3..2ff523a 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -28,20 +28,25 @@ jobs: with: python-version: ${{ matrix.python-version }} - - name: Install GCC (MacOS) + - name: Install CliMT (MacOS) if: matrix.name == 'macos' env: CC: gcc-12 FC: gfortran-12 + TARGET: HASWELL run: | brew install gcc@12 python -m pip install --upgrade pip wheel - # Pre-install rrtmg-only CliMT on MacOS - TARGET=HASWELL python -m pip install git+https://github.com/atmtools/climt@rrtmg-only + python -m pip install --no-binary git+https://github.com/atmtools/climt@rrtmg-only - - name: Install + - name: Install CliMT (Linux) + if: matrix.name == 'ubuntu' run: | python -m pip install --upgrade pip wheel + python -m pip install --no-binary git+https://github.com/atmtools/climt@rrtmg-only + + - name: Install + run: | python -m pip install -v .[docs,tests] python -m pip list