forked from pkopper/mlr3learners.pycox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tic.R
30 lines (26 loc) · 1 KB
/
tic.R
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
if (!ci_has_env("PARAMTEST") && !ci_has_env("DRAT")) {
do_package_checks()
# add random delay (up to 20s) to avoid git racing conditions
get_stage("deploy") %>%
add_code_step(floor(runif(15, min = 0, max = 20)))
do_drat("mlr3learners/mlr3learners.drat")
} else if (ci_has_env("PARAMTEST")) {
# PARAMTEST
get_stage("install") %>%
add_step(step_install_deps())
get_stage("script") %>%
add_code_step(remotes::install_dev("mlr3")) %>%
add_code_step(testthat::test_dir(system.file("paramtest",
package = "mlr3learners.pycox"),
stop_on_failure = TRUE))
} else if (ci_has_env("DRAT")) {
get_stage("deploy") %>%
add_step(step_install_deps()) %>%
# add random delay (up to 5 mins) to avoid git racing conditions
add_code_step(floor(runif(15, min = 0, max = 300))) %>%
# remove devel version indicator to enable deployment
add_code_step(writeLines(
gsub(".9000", "", readLines("DESCRIPTION")),
"DESCRIPTION"))
do_drat("mlr3learners/mlr3learners.drat")
}