Remove legacy bundle and field interfaces from MAPL Base (#4828) #2265
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Spack CI GCC Build | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| # Do not run if the only files changed cannot affect the build | |
| paths-ignore: | |
| - "**.md" | |
| - "**.pro" | |
| - "**.sh" | |
| - "**.perl" | |
| - ".github/CODEOWNERS" | |
| workflow_dispatch: | |
| concurrency: | |
| # For PRs: one slot per PR number. | |
| # For non-PR events (schedule, workflow_dispatch): one slot per ref. | |
| group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| spack_builds: | |
| if: github.event.pull_request.draft == false | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: "stable" | |
| use-esmf-develop: false | |
| run-tests: true | |
| - name: "develop" | |
| use-esmf-develop: true | |
| run-tests: true | |
| uses: GEOS-ESM/CI-workflows/.github/workflows/spack_gcc_build.yml@project/geosgcm | |
| name: Spack Build with ESMF (${{ matrix.name }}) | |
| secrets: | |
| BUILDCACHE_USERNAME: ${{ secrets.BUILDCACHE_USERNAME }} | |
| BUILDCACHE_TOKEN: ${{ secrets.BUILDCACHE_TOKEN }} | |
| with: | |
| use-esmf-develop: ${{ matrix.use-esmf-develop }} | |
| run-tests: ${{ matrix.run-tests }} | |
| run-mepo-develop: false | |
| patch-esmf: true |