Skip to content

Commit 7f683a9

Browse files
committed
avoid > 100Mb files for GitHub action
1 parent 49a74ca commit 7f683a9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

man/fragments/intro.Rmd

+4-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,10 @@ sccomp_result =
157157
.count = count,
158158
cores = 1, verbose = FALSE
159159
) |>
160-
sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
160+
161+
# max_sampling_iterations is used her to not exceed the maximum file size for GitHub action of 100Mb
162+
sccomp_remove_outliers(cores = 1, verbose = FALSE, max_sampling_iterations = 2000) |> # Optional
163+
161164
sccomp_test()
162165
```
163166

@@ -219,7 +222,6 @@ sccomp_result =
219222
.count = proportion,
220223
cores = 1, verbose = FALSE
221224
) |>
222-
sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
223225
sccomp_test()
224226
```
225227

vignettes/introduction.Rmd

+3-2
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,9 @@ sccomp_result =
206206
.count = count,
207207
cores = 1, verbose = FALSE
208208
) |>
209-
sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
209+
210+
# max_sampling_iterations is used her to not exceed the maximum file size for GitHub action of 100Mb
211+
sccomp_remove_outliers(cores = 1, verbose = FALSE, max_sampling_iterations = 2000) |> # Optional
210212
sccomp_test()
211213
```
212214

@@ -268,7 +270,6 @@ sccomp_result =
268270
.count = proportion,
269271
cores = 1, verbose = FALSE
270272
) |>
271-
sccomp_remove_outliers(cores = 1, verbose = FALSE) |> # Optional
272273
sccomp_test()
273274
```
274275

0 commit comments

Comments
 (0)