forked from joezuntz/cosmosis-standard-library
-
Notifications
You must be signed in to change notification settings - Fork 0
260 lines (216 loc) · 7.58 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
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Continuous Integration
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
Download_Data:
name: Download test data
runs-on: ubuntu-20.04
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: actions/cache@v3
name: Planck Data Cache
id: cache-planck
with:
path: COM_Likelihood_Data-baseline_R3.00.tar.gz
key: planck-2018-data
enableCrossOsArchive: true
- if: ${{ steps.cache-planck.outputs.cache-hit != 'true' }}
name: Download Planck
shell: bash -l {0}
run: |
URL="https://portal.nersc.gov/cfs/lsst/zuntz/planck/COM_Likelihood_Data-baseline_R3.00.tar.gz"
FILENAME="COM_Likelihood_Data-baseline_R3.00.tar.gz"
wget -O ${FILENAME} ${URL}
- name: Cache WMAP data
id: cache-wmap
uses: actions/cache@v3
with:
path: wmap_likelihood_full_v5.tar.gz
key: wmap-9-data
enableCrossOsArchive: true
- if: ${{ steps.cache-wmap.outputs.cache-hit != 'true' }}
name: Download WMAP data
run: |
wget https://lambda.gsfc.nasa.gov/data/map/dr5/dcp/likelihood/wmap_likelihood_full_v5.tar.gz
- name: Cache ACT data
id: cache-act
uses: actions/cache@v3
with:
path: ACT_dr6_likelihood_v1.1.tgz
key: act-dr6-data
enableCrossOsArchive: true
- if: ${{ steps.cache-act.outputs.cache-hit != 'true' }}
name: Download ACT data
run: |
wget https://lambda.gsfc.nasa.gov/data/suborbital/ACT/ACT_dr6/likelihood/data/ACT_dr6_likelihood_v1.1.tgz
conda_test:
name: Conda Test
needs: Download_Data
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-latest]
pyversion: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: cosmosis-env
channels: conda-forge
miniforge-variant: Mambaforge
miniforge-version: latest
python-version: ${{ matrix.pyversion }}
- name: Install dependencies with conda
shell: bash -l {0}
run: mamba install -c conda-forge "cosmosis>=3.2" cosmosis-build-standard-library pytest
- name: Get Cached Planck
uses: actions/cache/restore@v3
with:
path: COM_Likelihood_Data-baseline_R3.00.tar.gz
key: planck-2018-data
fail-on-cache-miss: true
- name: Get Cached WMAP
uses: actions/cache/restore@v3
with:
path: wmap_likelihood_full_v5.tar.gz
key: wmap-9-data
fail-on-cache-miss: true
- name: Get Cached ACT
uses: actions/cache/restore@v3
with:
path: ACT_dr6_likelihood_v1.1.tgz
key: act-dr6-data
fail-on-cache-miss: true
- name: Extract data
shell: bash -l {0}
run: |
# WMAP
pushd likelihood/wmap9/data
tar -zxvf ../../../wmap_likelihood_full_v5.tar.gz
mv wmap_likelihood_v5/data/* .
popd
#Planck
pushd likelihood/planck2018
tar -zxvf ../../COM_Likelihood_Data-baseline_R3.00.tar.gz
popd
# ACT
mkdir likelihood/act-dr6-lens/data
pushd likelihood/act-dr6-lens/data
tar -zxvf ../../../ACT_dr6_likelihood_v1.1.tgz
popd
- name: Build standard library
shell: bash -l {0}
run: |
source cosmosis-configure
make
- name: Run Tests
shell: bash -l {0}
run: |
source cosmosis-configure
pytest -vv --durations=0 tests/test_cosmosis_standard_library.py
- name: Run Demos
shell: bash -l {0}
run: |
source cosmosis-configure
pytest -vv --durations=0 tests/test_demos.py
apt-get-test:
runs-on: ubuntu-20.04
needs: Download_Data
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install apt dependencies
run: |
sudo apt-get update
sudo apt-get -y install gfortran-7 swig libopenmpi-dev openmpi-bin libopenblas-dev
sudo ln -s `which gfortran-7` /usr/local/bin/gfortran
sudo apt-get -y install libgsl-dev libfftw3-bin libfftw3-dev libfftw3-3 autotools-dev autoconf libcfitsio-dev
- name: Get Cached Planck
uses: actions/cache/restore@v3
with:
path: COM_Likelihood_Data-baseline_R3.00.tar.gz
key: planck-2018-data
fail-on-cache-miss: true
- name: Get Cached WMAP
uses: actions/cache/restore@v3
with:
path: wmap_likelihood_full_v5.tar.gz
key: wmap-9-data
fail-on-cache-miss: true
- name: Get Cached ACT
uses: actions/cache/restore@v3
with:
path: ACT_dr6_likelihood_v1.1.tgz
key: act-dr6-data
fail-on-cache-miss: true
- name: Extract data
shell: bash -l {0}
run: |
# WMAP
pushd likelihood/wmap9/data
tar -zxvf ../../../wmap_likelihood_full_v5.tar.gz
mv wmap_likelihood_v5/data/* .
popd
#Planck
pushd likelihood/planck2018
tar -zxvf ../../COM_Likelihood_Data-baseline_R3.00.tar.gz
popd
# ACT
mkdir likelihood/act-dr6-lens/data
pushd likelihood/act-dr6-lens/data
tar -zxvf ../../../ACT_dr6_likelihood_v1.1.tgz
popd
- uses: actions/cache@v2
name: Load pip cache
id: cache-pip
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}-v2
- name: Install python dependencies
run: |
python -m pip install --upgrade pip wheel setuptools
pip install "cosmosis>=3.2" "nautilus-sampler==0.6.*"
pip install -v --no-cache-dir --no-binary=mpi4py,camb mpi4py camb
pip install fitsio astropy fast-pt "Cython<3.0" jupyter
- name: Build
run: |
source .github/ci-setup.sh && make
# I have seen some failures here
- name: Check camb installation
run: |
source .github/ci-setup.sh
python -c "import camb"
- name: Test campaign commands
shell: bash -l {0}
run: |
source .github/ci-setup.sh
cosmosis-campaign -l examples/des-campaign.yml | tee output/campaign.log
grep -e "mira-titan" campaign.log
grep -e "fiducial" campaign.log
cosmosis-campaign --run fiducial-test-only examples/des-campaign.yml
cosmosis-campaign examples/des-campaign.yml --status fiducial-test-only > output/campaign.log
grep -e "🟢 fiducial-test-only" output/campaign.log
cosmosis-campaign examples/des-campaign.yml --status
- name: ExampleNotebook
shell: bash -l {0}
run: |
source cosmosis-configure
rm -f output/pantheon.txt
jupyter nbconvert --to notebook --execute "examples/example.ipynb"