Merge pull request #76 from ecmwf/feature/ci

Enable downstream CI
This commit is contained in:
Daniel Tipping 2023-03-17 13:01:23 +00:00 committed by GitHub
commit 131e3e2142
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 120 additions and 20 deletions

View File

@ -1,33 +1,75 @@
name: ci
# Controls when the workflow will run
on:
# Trigger the workflow on all pushes, except on tag creation
# Trigger the workflow on push to master or develop, except tag creation
push:
branches:
- '**'
- 'master'
- 'develop'
tags-ignore:
- '**'
- '**'
# Trigger the workflow on all pull requests
# Trigger the workflow on pull request
pull_request: ~
# Allow workflow to be dispatched on demand
# Trigger the workflow manually
workflow_dispatch: ~
jobs:
# Trigger after public PR approved for CI
pull_request_target:
types: [labeled]
# Calls a reusable CI workflow to build & test the current repository.
# It will pull in all needed dependencies and produce a code coverage report on success.
ci:
name: ci
uses: ecmwf-actions/reusable-workflows/.github/workflows/ci.yml@v1
jobs:
# Run CI including downstream packages on self-hosted runners
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
with:
codecov_upload: true
build_package_inputs: |
self_coverage: true
dependencies: |
ecmwf/ecbuild
MathisRosenhauer/libaec@master
dependency_branch: develop
eccodes: ecmwf/eccodes@${{ github.event.pull_request.head.sha || github.sha }}
secrets: inherit
# Run CI of private downstream packages on self-hosted runners
private-downstream-ci:
name: private-downstream-ci
needs: [downstream-ci]
if: (success() || failure()) && ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Dispatch private downstream CI
uses: ecmwf-actions/dispatch-private-downstream-ci@v1
with:
token: ${{ secrets.GH_REPO_READ_TOKEN }}
owner: ecmwf-actions
repository: private-downstream-ci
event_type: downstream-ci
payload: '{"eccodes": "ecmwf/eccodes@${{ github.event.pull_request.head.sha || github.sha }}"}'
# Build downstream packages on HPC
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
with:
eccodes: ecmwf/eccodes@${{ github.event.pull_request.head.sha || github.sha }}
secrets: inherit
# Run CI of private downstream packages on HPC
private-downstream-ci-hpc:
name: private-downstream-ci-hpc
needs: [downstream-ci-hpc]
if: (success() || failure()) && ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Dispatch private downstream CI
uses: ecmwf-actions/dispatch-private-downstream-ci@v1
with:
token: ${{ secrets.GH_REPO_READ_TOKEN }}
owner: ecmwf-actions
repository: private-downstream-ci
event_type: downstream-ci-hpc
payload: '{"eccodes": "ecmwf/eccodes@${{ github.event.pull_request.head.sha || github.sha }}"}'

10
.github/workflows/label-public-pr.yml vendored Normal file
View File

@ -0,0 +1,10 @@
# Manage labels of pull requests that originate from forks
name: label-public-pr
on:
pull_request_target:
types: [opened, synchronize]
jobs:
label:
uses: ecmwf-actions/reusable-workflows/.github/workflows/label-pr.yml@v2

23
.github/workflows/reusable-ci-hpc.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: reusable-ci-hpc
on:
workflow_call:
inputs:
eccodes:
required: false
type: string
jobs:
ci-hpc:
name: ci-hpc
uses: ecmwf-actions/reusable-workflows/.github/workflows/ci-hpc.yml@v2
with:
name-prefix: eccodes-
build-inputs: |
--package: ${{ inputs.eccodes || 'ecmwf/eccodes@develop' }}
--modules: |
ecbuild
ninja
aec
--parallel: 64
secrets: inherit

25
.github/workflows/reusable-ci.yml vendored Normal file
View File

@ -0,0 +1,25 @@
name: reusable-ci
on:
workflow_call:
inputs:
eccodes:
required: false
type: string
jobs:
ci:
name: eccodes-ci
uses: ecmwf-actions/reusable-workflows/.github/workflows/ci.yml@v2
with:
repository: ${{ inputs.eccodes || 'ecmwf/eccodes@develop' }}
name_prefix: eccodes-
build_package_inputs: |
repository: ${{ inputs.eccodes || 'ecmwf/eccodes@develop' }}
self_coverage: true
dependencies: |
ecmwf/ecbuild
MathisRosenhauer/libaec@master
dependency_branch: develop
parallelism_factor: 8
secrets: inherit