forked from scikit-adaptation/skada
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
192 lines (178 loc) · 6.55 KB
/
config.yml
File metadata and controls
192 lines (178 loc) · 6.55 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
# Tagging a commit with [circle front] will build the front page and perform test-doc.
# Tagging a commit with [circle full] will build everything.
version: 2
jobs:
build_docs:
docker:
- image: cimg/python:3.10
resource_class: medium
steps:
- checkout
- run:
name: Set BASH_ENV
command: |
echo "set -e" >> $BASH_ENV
echo "export DISPLAY=:99" >> $BASH_ENV
echo "export OPENBLAS_NUM_THREADS=4" >> $BASH_ENV
echo "BASH_ENV:"
cat $BASH_ENV
- run:
name: Merge with upstream
command: |
echo $(git log -1 --pretty=%B) | tee gitlog.txt
echo ${CI_PULL_REQUEST//*pull\//} | tee merge.txt
if [[ $(cat merge.txt) != "" ]]; then
echo "Merging $(cat merge.txt)";
git remote add upstream https://github.com/scikit-adaptation/skada.git;
git pull --ff-only upstream "refs/pull/$(cat merge.txt)/merge";
git fetch upstream main;
fi
# Load our data
- restore_cache:
keys:
- data-cache-0
- pip-cache
- run:
name: Install ffmpeg
command: |
sudo apt update
sudo apt install ffmpeg
- run:
name: Install latex (for logo)
command: |
sudo apt install texlive-latex-base texlive-fonts-recommended texlive-latex-extra cm-super dvipng
- run:
name: Get Python running
command: |
python -m pip install --user --upgrade --progress-bar off pip
python -m pip install --user --upgrade --progress-bar off .[doc]
# python -m pip install --user --upgrade --progress-bar off ipython "https://api.github.com/repos/sphinx-gallery/sphinx-gallery/zipball/master" memory_profiler
- save_cache:
key: pip-cache
paths:
- ~/.cache/pip
# Look at what we have and fail early if there is some library conflict
- run:
name: Check installation
command: |
which python
python -c "import skada"
which sphinx-build
- run:
name: Correct link in release file
command: |
sed -i -r 's/PR #([[:digit:]]*)/\[PR #\1\]\(https:\/\/github.com\/scikit-adaptation\/skada\/pull\/\1\)/' RELEASES.md
sed -i -r 's/Issue #([[:digit:]]*)/\[Issue #\1\]\(https:\/\/github.com\/scikit-adaptation\/skada\/issues\/\1\)/' RELEASES.md
sed -i -r 's/https:\/\/github.com\/scikit-adaptation\/skada\/pull\/([[:digit:]]*)/\[PR #\1\]\(https:\/\/github.com\/scikit-adaptation\/skada\/pull\/\1\)/' RELEASES.md
sed -i -r 's/https:\/\/github.com\/scikit-adaptation\/skada\/issue\/([[:digit:]]*)/\[Issue #\1\]\(https:\/\/github.com\/scikit-adaptation\/skada\/issue\/\1\)/' RELEASES.md
# Build docs
- run:
name: make html
command: |
cd docs;
make html;
no_output_timeout: 30m
# Save the outputs
- store_artifacts:
path: docs/build/html/
destination: dev
- persist_to_workspace:
root: docs/build
paths:
- html
deploy_main:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace:
at: /tmp/build
- run:
name: Fetch docs
command: |
set -e
mkdir -p ~/.ssh
echo -e "Host *\nStrictHostKeyChecking no" > ~/.ssh/config
chmod og= ~/.ssh/config
if [ ! -d ~/scikit-adaptation.github.io ]; then
git clone git@github.com:/scikit-adaptation/scikit-adaptation.github.io ~/scikit-adaptation.github.io --depth=1
fi
- run:
name: Deploy docs
command: |
set -e;
if [ "${CIRCLE_BRANCH}" == "main" ]; then
git config --global user.email "circle@scikit-adaptation.github.io";
git config --global user.name "Circle CI";
cd ~/scikit-adaptation.github.io;
git checkout main
git remote -v
git fetch origin
git reset --hard origin/main
git clean -xdf
echo "Deploying dev docs for ${CIRCLE_BRANCH}.";
cd dev
cp -a /tmp/build/html/* .;
touch .nojekyll;
git add -A;
git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM}).";
git push origin main;
else
echo "No deployment (build: ${CIRCLE_BRANCH}).";
fi
deploy_tag:
docker:
- image: cimg/python:3.10
steps:
- attach_workspace:
at: /tmp/build
- run:
name: Fetch docs
command: |
set -e
mkdir -p ~/.ssh
echo -e "Host *\nStrictHostKeyChecking no" > ~/.ssh/config
chmod og= ~/.ssh/config
if [ ! -d ~/scikit-adaptation.github.io ]; then
git clone git@github.com:/scikit-adaptation/scikit-adaptation.github.io ~/scikit-adaptation.github.io --depth=1
fi
- run:
name: Deploy docs
command: |
set -e;
git config --global user.email "circle@scikit-adaptation.github.io";
git config --global user.name "Circle CI";
cd ~/scikit-adaptation.github.io;
git checkout main
git remote -v
git fetch origin
git reset --hard origin/main
git clean -xdf
echo "Deploying dev docs for ${CIRCLE_BRANCH}.";
cp -a /tmp/build/html/* .;
touch .nojekyll;
git add -A;
git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM}).";
git push origin main;
workflows:
version: 2
default:
jobs:
- build_docs:
filters:
tags:
only: /[0-9]+(\.[0-9]+)*$/
- deploy_main:
requires:
- build_docs
filters:
branches:
only:
- main
- deploy_tag:
requires:
- build_docs
filters:
branches:
ignore: /.*/
tags:
only: /[0-9]+(\.[0-9]+)*$/