File: reusable-ci-hpc.yml

package info (click to toggle)
eccodes-python 2%3A2.45.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,048 kB
  • sloc: python: 7,752; ansic: 280; sh: 94; makefile: 81; cpp: 30
file content (31 lines) | stat: -rw-r--r-- 808 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: reusable-ci-hpc

on:
  workflow_call:
    inputs:
      eccodes:
        required: false
        type: string
      eccodes-python:
        required: false
        type: string

jobs:
  ci-hpc:
    name: ci-hpc
    uses: ecmwf/reusable-workflows/.github/workflows/ci-hpc.yml@v2
    with:
      name-prefix: eccodes-python-
      build-inputs: |
        --package: ${{ inputs.eccodes-python || 'ecmwf/eccodes-python@develop' }}
        --python: 3.10
        --env: |
          ECCODES_SAMPLES_PATH=../install/eccodes/share/eccodes/samples
          ECCODES_DEFINITION_PATH=../install/eccodes/share/eccodes/definitions
        --modules: |
          ecbuild
          ninja
        --dependencies: |
          ${{ inputs.eccodes || 'ecmwf/eccodes@develop' }}
        --parallel: 64
    secrets: inherit