-
Notifications
You must be signed in to change notification settings - Fork 44
145 lines (140 loc) · 4.21 KB
/
ci.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
name: CI
on:
push:
branches:
- "main"
pull_request:
branches:
- "*"
schedule:
- cron: "0 13 * * 1"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
detect-ci-trigger:
name: detect ci trigger
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event_name == 'pull_request'
outputs:
triggered: ${{ steps.detect-trigger.outputs.trigger-found }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: xarray-contrib/ci-trigger@v1
id: detect-trigger
with:
keyword: "[full-cloud-ci]"
build:
name: Build (${{ matrix.python-version }} | ${{ matrix.os }})
if: github.repository == 'jbusecke/xmip'
runs-on: ${{ matrix.os }}
timeout-minutes: 45
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Create conda environment
uses: mamba-org/setup-micromamba@v1
with:
cache-environment: true
cache-downloads: true
micromamba-version: 'latest'
environment-file: ci/environment.yml
create-args: >-
python=${{ matrix.python-version }}
- name: Install xMIP
run: |
python -m pip install -e . --no-deps
conda list
- name: Run Tests
run: |
pytest -n auto --cov=./ --cov-report=xml --ignore=tests/test_preprocessing_cloud.py
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v4.5.0
with:
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
- name: Check Machine Config
run: lscpu
upstream-dev:
name: Build (upstream-dev)
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Create conda environment
uses: mamba-org/setup-micromamba@v1
with:
cache-environment: true
cache-downloads: true
micromamba-version: 'latest'
environment-file: ci/environment-upstream-dev.yml
create-args: >-
python=3.11
- name: Install xMIP
run: |
python -m pip install -e . --no-deps
conda list
- name: Run Tests
run: |
pytest -n auto --cov=./ --cov-report=xml --ignore=tests/test_preprocessing_cloud.py
- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v4.5.0
with:
file: ./coverage.xml
flags: unittests
env_vars: OS,PYTHON
name: codecov-umbrella
fail_ci_if_error: false
- name: Run Tests
run: |
pytest -n auto --ignore=tests/test_preprocessing_cloud.py
cloud-tests:
needs: detect-ci-trigger
if: needs.detect-ci-trigger.outputs.triggered == 'true'
name: Build (cloud-data-tests | ${{ matrix.variable_id }} | ${{ matrix.experiment_id }} | ${{ matrix.grid_label }})
strategy:
fail-fast: false
matrix:
variable_id: ["thetao", "o2", "so", "uo"]
experiment_id: ["historical", "ssp585"]
grid_label: ["gn", "gr"]
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Create conda environment
uses: mamba-org/setup-micromamba@v1
with:
cache-environment: true
cache-downloads: true
micromamba-version: 'latest'
environment-file: ci/environment.yml
create-args: >-
python=3.11
- name: Install xMIP
run: |
python -m pip install -e . --no-deps
conda list
- name: Check Machine Config
run: lscpu
- name: Run Tests
run: |
pwd
echo $PYTHONPATH
pytest -n auto --reruns 1 --reruns-delay 5 tests/test_preprocessing_cloud.py --gl ${{ matrix.grid_label }} --ei ${{ matrix.experiment_id }} --vi ${{ matrix.variable_id }}