Implicit drag for dust species #502
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: Idefix CIs | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
paths-ignore: | |
- '.github/ISSUE_TEMPLATE/*' | |
jobs: | |
Linter: | |
# Don't do this in forks | |
if: ${{ github.repository == 'idefix-code/idefix' || github.repository == 'glesur/idefix' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- uses: pre-commit/[email protected] | |
- uses: pre-commit-ci/[email protected] | |
if: always() | |
icc-jobs: | |
needs: Linter | |
name: CPU Jobs (intel OneApi) | |
uses: ./.github/workflows/idefix-ci-jobs.yml | |
with: | |
TESTME_OPTIONS: -intel -Werror | |
IDEFIX_COMPILER: icc | |
gcc-jobs: | |
needs: Linter | |
name: CPU Jobs (gcc) | |
uses: ./.github/workflows/idefix-ci-jobs.yml | |
with: | |
TESTME_OPTIONS: -Werror | |
IDEFIX_COMPILER: gcc | |
cuda-jobs: | |
needs: Linter | |
name: CUDA Jobs | |
uses: ./.github/workflows/idefix-ci-jobs.yml | |
with: | |
TESTME_OPTIONS: -cuda -Werror | |
IDEFIX_COMPILER: nvcc |