forked from gammapy/gammapy
-
Notifications
You must be signed in to change notification settings - Fork 0
158 lines (157 loc) · 4.99 KB
/
ci.yml
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
name: CI
on: [push, pull_request]
jobs:
lint:
name: Black check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
with:
version: "22.6.0"
ci-runs:
name: ${{ matrix.os }}, ${{ matrix.tox_env }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.allowed_fail }}
env:
PYTEST_ADDOPTS: --color=yes -n auto --dist=loadscope
strategy:
fail-fast: true
matrix:
include:
- os: ubuntu-latest
python: '3.9'
tox_env: 'py39-test-alldeps-cov'
allowed_fail: false
- os: ubuntu-latest
python: '3.10'
tox_env: 'py310-test-alldeps_noray'
gammapy_data_path: /home/runner/work/gammapy/gammapy/gammapy-datasets/dev
allowed_fail: false
- os: macos-latest
python: '3.10'
tox_env: 'py310-test'
gammapy_data_path: /Users/runner/work/gammapy/gammapy/gammapy-datasets/dev
allowed_fail: false
- os: windows-latest
python: '3.10'
tox_env: 'py310-test-alldeps_noray'
gammapy_data_path: D:\a\gammapy\gammapy\gammapy-datasets\dev
allowed_fail: false
- os: ubuntu-latest
python: '3.10'
tox_env: 'py310-test'
allowed_fail: false
- os: ubuntu-latest
python: '3.10'
tox_env: 'codestyle'
allowed_fail: false
- os: ubuntu-latest
python: '3.9'
tox_env: 'py39-test-alldeps_noray-astropylts-numpy121'
allowed_fail: false
- os: ubuntu-latest
python: '3.9'
tox_env: 'oldestdeps'
allowed_fail: false
- os: ubuntu-latest
python: '3.9'
tox_env: 'devdeps'
allowed_fail: true
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: download datasets
if: ${{ matrix.gammapy_data_path }}
run: |
python -m pip install tqdm requests
python -m pip install -e .
gammapy download datasets
- name: Print Python, pip, setuptools, and tox versions
run: |
python -c "import sys; print(f'Python {sys.version}')"
python -c "import pip; print(f'pip {pip.__version__}')"
python -c "import setuptools; print(f'setuptools {setuptools.__version__}')"
python -c "import tox; print(f'tox {tox.__version__}')"
- name: Run tests
if: ${{ !matrix.gammapy_data_path }}
run: tox -e ${{ matrix.tox_env }} -- -n auto
- name: Run tests with data
if: ${{ matrix.gammapy_data_path }}
env:
GAMMAPY_DATA: ${{ matrix.gammapy_data_path}}
run: tox -e ${{ matrix.tox_env }} -- -n auto
- name: Upload coverage to codecov
if: "contains(matrix.tox_env, '-cov')"
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
verbose: true
sphinx:
name: Linux python 3.9 sphinx all-deps
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
env:
PYTEST_ADDOPTS: --color=yes -n auto --dist=loadscope
GAMMAPY_DATA: /home/runner/work/gammapy/gammapy/gammapy-datasets/dev
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install base dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: download datasets
run: |
python -m pip install tqdm requests
python -m pip install -e .
gammapy download datasets
- name: test build docs
run: |
tox -e build_docs -- -j auto
- name: check links
continue-on-error: true
run: |
tox -e linkcheck -- -j auto
conda-build:
name: Linux python 3.9 conda-build all-deps
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: create and activate env
uses: mamba-org/provision-with-micromamba@main
with:
environment-file: environment-dev.yml
- name: install gammapy
run: |
pip install -e .
- name: test conda build
run: |
make clean
conda install conda-build
conda info
conda --version
conda build --version
python setup.py bdist_conda