Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pygribjump downstream CI #36

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/ci-config-pygribjump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
cmake_options: -DENABLE_FDB_BUILD_TOOLS=ON
dependencies: |
ecmwf/ecbuild
MathisRosenhauer/libaec@master
ecmwf/eccodes
ecmwf/eckit@develop
ecmwf/metkit
ecmwf/fdb
dependency_branch: develop
parallelism_factor: 8
self_build: false
19 changes: 19 additions & 0 deletions .github/ci-hpc-config-pygribjump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
build:
python: "3.10"
modules:
- ninja
- aec
dependencies:
- ecmwf/ecbuild@develop
- ecmwf/eccodes@develop
- ecmwf/eckit@develop
- ecmwf/metkit@develop
- ecmwf/fdb@develop
- ecmwf/gribjump@develop
dependency_cmake_options:
- "ecmwf/gribjump: '-DENABLE_FDB_BUILD_TOOLS=ON'"
- "ecmwf/fdb: '-DENABLE_LUSTRE=OFF'"
parallel: 64
env:
- ECCODES_SAMPLES_PATH=$ECCODES_DIR/share/eccodes/samples
- ECCODES_DEFINITION_PATH=$ECCODES_DIR/share/eccodes/definitions
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
# Trigger the workflow on push to master or develop, except tag creation
push:
branches:
- 'master'
- 'develop'
- "master"
- "develop"
tags-ignore:
- '**'
- "**"

# Trigger the workflow on pull request
pull_request: ~
Expand All @@ -24,9 +24,10 @@ jobs:
downstream-ci:
name: downstream-ci
if: ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
uses: ecmwf-actions/downstream-ci/.github/workflows/downstream-ci.yml@main
uses: ecmwf-actions/downstream-ci/.github/workflows/downstream-ci.yml@monorepos
with:
gribjump: ecmwf/gribjump@${{ github.event.pull_request.head.sha || github.sha }}
pygribjump: pygribjump:ecmwf/gribjump@${{ github.event.pull_request.head.sha || github.sha }}
codecov_upload: true
secrets: inherit

Expand All @@ -52,9 +53,10 @@ jobs:
downstream-ci-hpc:
name: downstream-ci-hpc
if: ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
uses: ecmwf-actions/downstream-ci/.github/workflows/downstream-ci-hpc.yml@main
uses: ecmwf-actions/downstream-ci/.github/workflows/downstream-ci-hpc.yml@monorepos
with:
gribjump: ecmwf/gribjump@${{ github.event.pull_request.head.sha || github.sha }}
pygribjump: pygribjump:ecmwf/gribjump@${{ github.event.pull_request.head.sha || github.sha }}
secrets: inherit

# Run CI of private downstream packages on HPC
Expand Down
Loading