-
Notifications
You must be signed in to change notification settings - Fork 7
219 lines (183 loc) · 7.46 KB
/
Copy pathci.yml
File metadata and controls
219 lines (183 loc) · 7.46 KB
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
name: skyCatalogs CI
on:
push:
branches:
- main
- releases/*
pull_request:
branches:
- main
- releases/*
schedule:
- cron: 0 23 * * 4
jobs:
rubin_sim_data:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
py: [ "3.13" ]
CC: [ gcc ]
CXX: [ g++ ]
defaults:
run:
# cf. https://github.com/conda-incubator/setup-miniconda#important
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Cache files
uses: actions/cache@v4
id: cache-rubin-sim-data
env:
cache-name: cache-rubin-sim-data
with:
path: rubin_sim_data/
key: rubin_sim_data_files
- name: Install rubin_sim_data (if not cached)
if: ${{ steps.cache-rubin-sim-data.outputs.cache-hit != 'true' }}
run: |
echo ${{ steps.cache-rubin-sim-data.outputs.cache-hit }}
mkdir rubin_sim_data
mkdir rubin_sim_data/sims_sed_library
# Just get the throughputs and SED data for now.
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/rubin_sim_data/throughputs_2023_09_07.tgz | tar -C rubin_sim_data -xz
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/sed_library/seds_170124.tar.gz | tar -C rubin_sim_data/sims_sed_library -xz
no-stack-build:
needs: [rubin_sim_data]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
py: [ "3.13" ]
CC: [ gcc ]
CXX: [ g++ ]
defaults:
run:
# cf. https://github.com/conda-incubator/setup-miniconda#important
shell: bash -l {0}
env:
VIRTUAL_ENV: .venv
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Cache files
uses: actions/cache@v4
id: cache-rubin-sim-data
env:
cache-name: cache-rubin-sim-data
with:
path: rubin_sim_data/
key: rubin_sim_data_files
- name: Install rubin_sim_data (if not cached)
if: ${{ steps.cache-rubin-sim-data.outputs.cache-hit != 'true' }}
run: |
echo ${{ steps.cache-rubin-sim-data.outputs.cache-hit }}
mkdir rubin_sim_data
mkdir rubin_sim_data/sims_sed_library
# Just get the throughputs and SED data for now.
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/rubin_sim_data/throughputs_2023_09_07.tgz | tar -C rubin_sim_data -xz
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/sed_library/seds_170124.tar.gz | tar -C rubin_sim_data/sims_sed_library -xz
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install skyCatalogs
run: |
uv venv
uv pip install pytest
uv pip install .
- name: Run tests without the LSST Stack
run: |
export RUBIN_SIM_DATA_DIR=`pwd`/rubin_sim_data
export SIMS_SED_LIBRARY_DIR=${RUBIN_SIM_DATA_DIR}/sims_sed_library
uv run pytest --ignore-glob=tests/test_gaia*.py --ignore-glob=tests/test_trilegal.py
full-stack-build:
needs: [rubin_sim_data]
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
py: [ "3.13" ]
CC: [ gcc ]
CXX: [ g++ ]
defaults:
run:
# cf. https://github.com/conda-incubator/setup-miniconda#important
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.py }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- name: Verify python and pip versions
run: |
python --version
pip --version
- name: Audit disk usage and remove unneeded tooling
run: |
df -h
sudo rm -rf /usr/lib/jvm
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/.ghcup
sudo rm -rf /usr/local/lib/android
sudo rm -rf /usr/local/chromium
df -h
- name: Setup conda
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: stack
python-version: ${{ matrix.py }}
condarc-file: etc/.condarc
- name: Load cached files
uses: actions/cache@v4
id: cache-rubin-sim-data
env:
cache-name: cache-rubin-sim-data
with:
path: rubin_sim_data/
key: rubin_sim_data_files
- name: Install rubin_sim_data (if not cached)
if: ${{ steps.cache-rubin-sim-data.outputs.cache-hit != 'true' }}
run: |
mkdir rubin_sim_data
mkdir rubin_sim_data/sims_sed_library
# Just get the throughputs and SED data for now.
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/rubin_sim_data/throughputs_2023_09_07.tgz | tar -C rubin_sim_data -xz
curl https://s3df.slac.stanford.edu/groups/rubin/static/sim-data/sed_library/seds_170124.tar.gz | tar -C rubin_sim_data/sims_sed_library -xz
- name: Install conda test deps
run: |
# conda update -n base conda
conda info
conda list
conda install -y --file etc/conda_test_requirements.txt
conda info
- name: Install dependencies via conda
run: |
conda install -y --file etc/conda_requirements.txt
- name: Install pystellibs
run: |
git clone https://github.com/mfouesneau/pystellibs.git
cd pystellibs
pip install --no-build-isolation --no-deps -e .
cd ..
- name: Run tests with the LSST Stack
run: |
export RUBIN_SIM_DATA_DIR=`pwd`/rubin_sim_data
export SIMS_SED_LIBRARY_DIR=${RUBIN_SIM_DATA_DIR}/sims_sed_library
export PYTHONPATH=`pwd`/pystellibs:${PYTHONPATH}
eups list lsst_distrib
setup -k -r .
pytest --cov=skycatalogs --cov-report=xml --cov-report=term-missing tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: false
files: coverage.xml
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true