Feature/pchakrab/porting dust to mapl3 #100
Workflow file for this run
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: Build Tests | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| # Do not run if the only files changed cannot affect the build | |
| paths-ignore: | |
| - "**.md" | |
| - "**.pro" | |
| - "**.sh" | |
| - "**.perl" | |
| - ".github/CODEOWNERS" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| build_gcm: | |
| strategy: | |
| matrix: | |
| compiler: [ifort, gfortran-14, gfortran-15] | |
| build-type: [Debug] | |
| uses: GEOS-ESM/CI-workflows/.github/workflows/geosgcm_build_tests.yml@project/geosgcm | |
| with: | |
| compiler: ${{ matrix.compiler }} | |
| cmake-build-type: ${{ matrix.build-type }} | |
| spack_build: | |
| uses: GEOS-ESM/CI-workflows/.github/workflows/spack_gcc_build.yml@project/geosgcm | |
| secrets: | |
| BUILDCACHE_USERNAME: ${{ secrets.BUILDCACHE_USERNAME }} | |
| BUILDCACHE_TOKEN: ${{ secrets.BUILDCACHE_TOKEN }} | |
| build_gocart: | |
| name: Build GOCART | |
| if: "!contains(github.event.pull_request.labels.*.name, '0 diff trivial')" | |
| runs-on: ubuntu-24.04 | |
| container: | |
| image: gmao/ubuntu24-geos-env:v8.20.0-intelmpi_2021.13-ifort_2021.13 | |
| steps: | |
| # https://github.com/orgs/community/discussions/25678#discussioncomment-5242449 | |
| - name: Delete huge unnecessary tools folder | |
| run: rm -rf /opt/hostedtoolcache | |
| - name: Checkout GOCART | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| filter: blob:none | |
| - name: Set all directories as git safe | |
| run: | | |
| git config --global --add safe.directory '*' | |
| - name: Versions etc. | |
| run: | | |
| ifort --version | |
| mpirun --version | |
| echo $BASEDIR | |
| - name: Mepo clone external repos | |
| run: | | |
| mepo clone --partial blobless | |
| mepo status | |
| - name: Update other branches | |
| if: ${{ github.event.pull_request.head.ref != 'main' && github.event.pull_request.head.ref != 'develop' }} | |
| run: | | |
| mepo checkout-if-exists ${GITHUB_HEAD_REF} | |
| mepo status | |
| - name: CMake | |
| run: | | |
| cmake -B build -S . --install-prefix=${pwd}/install -DCMAKE_Fortran_COMPILER=ifort -DCMAKE_BUILD_TYPE=Debug -DMPIEXEC_PREFLAGS='--oversubscribe' -DUSE_F2PY=OFF | |
| - name: Build | |
| run: | | |
| cmake --build build --target GOCART2G_GridComp --parallel 4 |