Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,34 @@ jobs:
matrix:
compiler: [ifort, gfortran-14, gfortran-15]
build-type: [Debug]
fixture-repo: [GEOS-ESM/GEOSgcm, GEOS-ESM/GEOSldas]
include:
# Set run-mepo-develop: false for GEOSldas builds
- fixture-repo: GEOS-ESM/GEOSldas
run-mepo-develop: false
# GEOSgcm uses the default (true), so no need to specify

uses: GEOS-ESM/CI-workflows/.github/workflows/geosgcm_build_tests.yml@project/geosgcm
with:
compiler: ${{ matrix.compiler }}
cmake-build-type: ${{ matrix.build-type }}
fixture-repo: GEOS-ESM/GEOSgcm
fixture-repo: ${{ matrix.fixture-repo }}
run-mepo-develop: ${{ matrix.run-mepo-develop || 'true' }}

spack_build:
strategy:
matrix:
fixture-repo: [GEOS-ESM/GEOSgcm, GEOS-ESM/GEOSldas]
include:
# Set run-mepo-develop: false for GEOSldas builds
- fixture-repo: GEOS-ESM/GEOSldas
run-mepo-develop: false
# GEOSgcm uses the default (true), so no need to specify
uses: GEOS-ESM/CI-workflows/.github/workflows/spack_gcc_build.yml@project/geosgcm
secrets:
BUILDCACHE_USERNAME: ${{ secrets.BUILDCACHE_USERNAME }}
BUILDCACHE_TOKEN: ${{ secrets.BUILDCACHE_TOKEN }}
with:
fixture-repo: GEOS-ESM/GEOSgcm
fixture-repo: ${{ matrix.fixture-repo }}
run-mepo-develop: ${{ matrix.run-mepo-develop || 'true' }}