forked from ecmwf/multio
-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (35 loc) · 980 Bytes
/
ci.yml
File metadata and controls
42 lines (35 loc) · 980 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
name: ci
# Controls when the workflow will run
on:
# Trigger the workflow on all pushes, except on tag creation
push:
branches:
- '**'
tags-ignore:
- '**'
# Trigger the workflow on all pull requests
pull_request: ~
# Allow workflow to be dispatched on demand
workflow_dispatch: ~
env:
CTEST_PARALLEL_LEVEL: 1
jobs:
# 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
strategy:
fail-fast: false # false: try to complete all jobs
with:
codecov_upload: true
build_package_inputs: |
dependencies: |
ecmwf/ecbuild
ecmwf/eckit
ecmwf/odc
MathisRosenhauer/libaec@master
ecmwf/eccodes
ecmwf/metkit
ecmwf/fdb
dependency_branch: develop