-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
336 lines (275 loc) · 9.87 KB
/
Taskfile.yml
File metadata and controls
336 lines (275 loc) · 9.87 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
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
version: '3'
tasks:
install-pixelator-r:
desc: Install the PixelatorR R package into a specific environment
summary: |-
Install PixelatorR into an environment.
Variables:
DEPS: Whether to install pixelatorR dependencies. Default is false.
Example:
task install-pixelator-r ENV_NAME=my_env
vars:
DEPS: '{{ .DEPS | default "false" }}'
cmds:
- |
set -euo pipefail
# Determine the environment to use, handle unbound variable
ENV_TO_USE="{{.ENV_NAME}}"
if [ -z "$ENV_TO_USE" ]; then
ENV_TO_USE=$(basename $CONDA_DEFAULT_ENV)
fi
# Check if the environment exists, otherwise quit
micromamba env list | grep -q "$ENV_TO_USE" || {
echo "Environment $ENV_TO_USE does not exist. Please create it first."
exit 1
}
echo "Installing pixelatorR in environment $ENV_TO_USE"
micromamba run -n $ENV_TO_USE Rscript -e '
local({r <- getOption("repos")
r["CRAN"] <- "https://cran.r-project.org"
options(repos=r)
})
remotes::install_github(
"PixelgenTechnologies/pixelatorR",
upgrade="never",
deps={{ .DEPS | upper }}
)
'
silent: true
setup-env-bare:
desc: Create a micromamba environment with R installed
summary: |-
Create a micromamba environment with R installed
--------------------------------------------------------------
The environment name can be set using the ENV_NAME environment variable.
By default, the environment will be named r-pixelator.
Example:
task setup-env ENV_NAME=my_env
cmds:
- |
set -euo pipefail
# Default environment name
ENV_NAME=${ENV_NAME:-r-pixelator}
# Check if micromamba is installed
if ! command -v micromamba &> /dev/null; then
echo "micromamba is not installed. Please install it first."
exit 1
fi
# Create the environment
if micromamba create -n '{{.ENV_NAME}}' -y -c conda-forge conda-forge::r-base; then
echo "Environment '{{.ENV_NAME}}' created successfully."
else
echo "Failed to create environment '{{.ENV_NAME}}'."
exit 1
fi
vars:
ENV_NAME: '{{.ENV_NAME | default "r-pixelator"}}'
silent: true
setup-env-pixelatorR:
desc: Create a micromamba environment with pixelatorR
summary: |-
Create a micromamba environment with pixelatorR
--------------------------------------------------------------
The environment name can be set using the ENV_NAME environment variable.
By default, the environment will be named r-pixelator.
Examples:
task setup-env-pixelatorR ENV_NAME=my_env
task setup-env-pixelatorR ENV_NAME=my_env MICROMAMBA_ARGS="--platform osx-64"
vars:
MICROMAMBA_ARGS: '{{ .MICROMAMBA_ARGS | default "" }}'
ENV_NAME: '{{.ENV_NAME | default "r-pixelator"}}'
cmds:
- |
set -euo pipefail
# Check if micromamba is installed
if ! command -v micromamba &> /dev/null; then
echo "micromamba is not installed. Please install it first."
exit 1
fi
echo "Creating environment '{{.ENV_NAME}}'."
# Create the environment
if micromamba env create -y -n {{.ENV_NAME}} -f environment.yml {{ .MICROMAMBA_ARGS }}; then
echo "Environment '{{.ENV_NAME}}' created successfully."
else
echo "Failed to create environment '{{.ENV_NAME}}'."
exit 1
fi
task install-pixelator-r ENV_NAME={{.ENV_NAME}}
silent: true
install-pixelatorR-with-pak:
desc: Install package dependencies
summary: |-
Install package dependencies
--------------------------------------------------------------
The ENV_NAME environment environment determines the micromamba
environment to use.
Example:
task install-with-pak ENV_NAME=my_env
cmds:
- |
set -euo pipefail
# Determine the environment to use, handle unbound variable
ENV_TO_USE="{{.ENV_NAME}}"
if [ -z "$ENV_TO_USE" ]; then
ENV_TO_USE=$(basename $CONDA_DEFAULT_ENV)
fi
# Check if micromamba is installed
if ! command -v micromamba &> /dev/null; then
echo "micromamba is not installed. Please install it first."
exit 1
fi
# Check if the environment exists
micromamba env list | grep -q "$ENV_TO_USE" || {
echo "Environment $ENV_TO_USE does not exist. Please create it first."
exit 1
}
echo "Installing R packages in environment '$ENV_TO_USE'."
# Run installation in the environment
micromamba run -n $ENV_TO_USE bash -c '
micromamba install -y conda-forge::hdf5 &&
Rscript inst/dev/install-deps.R
'
silent: true
document:
desc: Generate documentation using roxygen2
summary: |-
Generate documentation using roxygen2
--------------------------------------------------------------
The ENV_NAME environment environment variable sets the
micromamba environment to use.
Example:
task document ENV_NAME=my_env
cmds:
- |
set -euo pipefail
# Determine the environment to use, handle unbound variable
ENV_TO_USE="{{.ENV_NAME}}"
if [ -z "$ENV_TO_USE" ]; then
ENV_TO_USE=$(basename $CONDA_DEFAULT_ENV)
fi
# Check if the environment exists
if ! micromamba env list | grep -q "$ENV_TO_USE"; then
echo "Environment '$ENV_TO_USE' does not exist"
exit 1
else
echo "Using environment '$ENV_TO_USE'"
micromamba run -n $ENV_TO_USE bash -c '
Rscript -e "devtools::document()"
'
fi
silent: true
style-staged-files:
desc: Style staged files using styler
summary: |-
Style staged files using styler
--------------------------------------------------------------
The ENV_NAME environment environment variable sets the
micromamba environment to use.
Example:
task style-staged-files ENV_NAME=my_env
cmds:
- |
set -euo pipefail
# Determine the environment to use, handle unbound variable
ENV_TO_USE="{{.ENV_NAME}}"
if [ -z "$ENV_TO_USE" ]; then
ENV_TO_USE=$(basename $CONDA_DEFAULT_ENV)
fi
# Check if the environment exists
if ! micromamba env list | grep -q "$ENV_TO_USE"; then
echo "Environment '$ENV_TO_USE' does not exist"
exit 1
else
echo "Using environment '$ENV_TO_USE'"
micromamba run -n $ENV_TO_USE bash -c '
Rscript inst/dev/style-staged.R
'
fi
silent: true
test-staged-files:
desc: Run tests on staged files using testthat
summary: |-
Run tests on staged files using testthat
--------------------------------------------------------------
The ENV_NAME environment environment variable sets the
micromamba environment to use.
Example:
task test-staged-files ENV_NAME=my_env
cmds:
- |
set -euo pipefail
# Determine the environment to use, handle unbound variable
ENV_TO_USE="{{.ENV_NAME}}"
if [ -z "$ENV_TO_USE" ]; then
ENV_TO_USE=$(basename $CONDA_DEFAULT_ENV)
fi
echo $ENV_TO_USE
# Check if the environment exists
if ! micromamba env list | grep -q "$ENV_TO_USE"; then
echo "Environment '$ENV_TO_USE' does not exist"
exit 1
else
echo "Using environment '$ENV_TO_USE'"
micromamba run -n $ENV_TO_USE bash -c '
Rscript inst/dev/test-staged.R
'
fi
silent: true
test-all:
desc: Run all tests using testthat
summary: |-
Run all tests using testthat
--------------------------------------------------------------
The ENV_NAME environment environment variable sets the
micromamba environment to use.
Example:
task test-all ENV_NAME=my_env
cmds:
- |
set -euo pipefail
# Determine the environment to use, handle unbound variable
ENV_TO_USE="{{.ENV_NAME}}"
if [ -z "$ENV_TO_USE" ]; then
ENV_TO_USE=$(basename $CONDA_DEFAULT_ENV)
fi
# Check if the environment exists
if ! micromamba env list | grep -q "$ENV_TO_USE"; then
echo "Environment '$ENV_TO_USE' does not exist"
exit 1
else
echo "Using environment '$ENV_TO_USE'"
micromamba run -n $ENV_TO_USE bash -c '
Rscript -e "devtools::test()"
'
fi
find tests/testthat -maxdepth 1 -type f -name "*.pdf" -delete
silent: true
test-examples:
desc: Run examples in pixelatorR
summary: |-
Run examples in pixelatorR
--------------------------------------------------------------
The ENV_NAME environment environment variable sets the
micromamba environment to use.
Example:
task test-examples ENV_NAME=my_env
cmds:
- |
set -euo pipefail
# Determine the environment to use, handle unbound variable
ENV_TO_USE="{{.ENV_NAME}}"
if [ -z "$ENV_TO_USE" ]; then
ENV_TO_USE=$(basename $CONDA_DEFAULT_ENV)
fi
# Check if the environment exists
if ! micromamba env list | grep -q "$ENV_TO_USE"; then
echo "Environment '$ENV_TO_USE' does not exist"
exit 1
else
echo "Using environment '$ENV_TO_USE'"
micromamba run -n $ENV_TO_USE bash -c '
Rscript -e "devtools::run_examples()"
'
fi
find . -maxdepth 1 -type f -name "*.pdf" -delete
silent: true