-
Notifications
You must be signed in to change notification settings - Fork 43
205 lines (175 loc) · 5.55 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
name: CI
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
wrfhydropy_setup:
name: standard installation
runs-on: ubuntu-latest
strategy:
fail-fast: false
defaults:
run:
shell: bash
steps:
- name: Checkout repo
uses: actions/checkout@v4
#- name: Set environment variables
# run: |
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Upgrade pip and install build and twine
run: |
python -m pip install --upgrade pip
pip install wheel build twine
- name: Base installation
run: |
pip --verbose install .
# - name: Print pyhmn version
# run: |
# python -c "import wrfhydropy; print(wrfhydropy.__version__)"
# - name: Build wrfhydropy, check dist outputs
# run: |
# python -m build
# twine check --strict dist/*
# wrfhydropy_lint:
# name: linting
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# defaults:
# run:
# shell: bash
# steps:
# - name: Checkout repo
# uses: actions/checkout@v3
# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: 3.10
# - name: Install dependencies
# run: |
# pip install wheel
# pip install -r ./ci/requirements/environment.txt
# - name: Version info
# run: |
# pip -V
# pip list
# - name: Run isort
# run: |
# echo "if isort check fails update isort using"
# echo " pip install isort --upgrade"
# echo "and run"
# echo " isort ./wrfhydropy ./autotest"
# echo "and then commit the changes."
# isort --check --diff ./wrfhydropy
# - name: Run black
# run: |
# echo "if black check fails update black using"
# echo " pip install black --upgrade"
# echo "and run"
# echo " black ./wrfhydropy ./autotest"
# echo "and then commit the changes."
# black --check --diff ./wrfhydropy
# - name: Run flake8
# run: |
# flake8 --count --show-source --exit-zero ./wrfhydropy ./autotest
# - name: Run pylint
# run: |
# pylint --jobs=2 --errors-only --exit-zero ./wrfhydropy ./autotest
test:
name: ${{ matrix.os}} py${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
# os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
# for debugging purposes run github actions only on ubuntu-latest until its passing
os: [ "ubuntu-latest" ]
python-version: [ "3.11" ]
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set environment variables
run: |
echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV
# - name: Setup gfortran
# uses: awvwgk/setup-fortran@main
# with:
# compiler: gcc
# version: 11
# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# architecture: x64
- name: Install Dependencies via Micromamba
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest'
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ./whp_test_env.yml
cache-downloads: true
cache-environment: true
create-args: >-
python=${{ matrix.python-version }} nccmp
- name: Install Dependencies via Micromamba
if: matrix.os == 'windows-latest'
uses: mamba-org/setup-micromamba@v1
with:
environment-file: ./whp_test_env.yml
cache-downloads: true
cache-environment: true
create-args: >-
python=${{ matrix.python-version }}
- name: Install nccmp on Windows
if: matrix.os == 'windows-latest'
run: |
curl -kL https://downloads.sourceforge.net/project/nccmp/windows/x86_64/nccmp-1.8.2.0-msys2-x86_64.zip -o nccmp-1.8.2.0-msys2-x86_64.zip
unzip nccmp-1.8.2.0-msys2-x86_64.zip
echo "${PWD}/usr/local/bin" >> $GITHUB_PATH
# - name: Install nccmp on Ubuntu or MacOS
# uses: mamba-org/setup-micromamba@v1
# with:
# cache-downloads: true
# cache-environment: true
# create-args: nccmp
- name: Install wrfhydropy
run: |
pip install .
- name: Version info
run: |
pip -V
pip list
- name: Run tests
working-directory: wrfhydropy/tests
run: pytest
-vv
--durations=0
--cov=wrfhydropy
--cov-report=xml
--junitxml=pytest.xml
# -n=auto
# - name: Upload test results
# if: always()
# uses: actions/upload-artifact@v2
# with:
# name: Test results for ${{ runner.os }}-${{ matrix.python-version }}
# path: ./wrfhydropy/tests/pytest.xml
# - name: Upload code coverage to Codecov
# uses: codecov/[email protected]
# with:
# file: ./autotest/coverage.xml
# # flags: unittests
# env_vars: RUNNER_OS,PYTHON_VERSION
# # name: codecov-umbrella
# fail_ci_if_error: false
# version: "v0.1.15"