jedwards4b is testing the project #86
Workflow file for this run
This file contains 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: cesm-derecho-hosted | ||
run-name: ${{ github.actor }} is testing the project | ||
on: | ||
pull_request: | ||
branches: [ cesm3.0-alphabranch ] | ||
types: [ labeled ] | ||
jobs: | ||
setup: | ||
# only run this workflow if the label run-pr-tests is applied | ||
if: ${{ github.event.label.name == 'run-pr-tests' }} | ||
# currently hpc-runner is derecho.hpc.ucar.edu | ||
runs-on: hpc-runner | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- name: Run git-fleximod | ||
run: | | ||
pwd | ||
module list | ||
./bin/git-fleximod update | ||
build: | ||
strategy: | ||
matrix: | ||
compiler: [gnu, intel, intel-oneapi, nvhpc] | ||
# Allows the next step to run even if this one fails | ||
continue-on-error: true | ||
uses: ./.github/workflows/build.yaml | ||
Check failure on line 32 in .github/workflows/derecho.yaml GitHub Actions / cesm-derecho-hostedInvalid workflow file
|
||
with: | ||
compiler: ${{ matrix.compiler }} |