Skip to content

Commit 10b7b9a

Browse files
committed
Retry WSLv2 update up to 5 times due to unreliable download server (#66)
1 parent 3d42bb0 commit 10b7b9a

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

src/jsMain/kotlin/net/kautler/github/action/setup_wsl/Distribution.kt

-14
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
package net.kautler.github.action.setup_wsl
1818

1919
import actions.core.debug
20-
import actions.core.info
2120
import actions.core.isDebug
2221
import actions.exec.ExecOptions
2322
import actions.exec.exec
@@ -487,16 +486,3 @@ object Alpine : ApkBasedDistribution(
487486
productId = "9p804crf0395",
488487
installerFile = "Alpine.exe"
489488
)
490-
491-
private suspend inline fun <T> retry(amount: Int, crossinline block: suspend () -> T): T {
492-
(1..amount).map { i ->
493-
runCatching {
494-
return block()
495-
}.onFailure {
496-
if (i != 5) {
497-
debug(it.stackTraceToString())
498-
info("Failure happened, retrying (${it.message ?: it})")
499-
}
500-
}
501-
}.last().getOrThrow<Nothing>()
502-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package net.kautler.github.action.setup_wsl
2+
3+
import actions.core.debug
4+
import actions.core.info
5+
6+
internal suspend inline fun <T> retry(amount: Int, crossinline block: suspend () -> T): T {
7+
(1..amount).map { i ->
8+
runCatching {
9+
return block()
10+
}.onFailure {
11+
if (i != 5) {
12+
debug(it.stackTraceToString())
13+
info("Failure happened, retrying (${it.message ?: it})")
14+
}
15+
}
16+
}.last().getOrThrow<Nothing>()
17+
}

src/jsMain/kotlin/net/kautler/github/action/setup_wsl/SetupWsl.kt

+5-3
Original file line numberDiff line numberDiff line change
@@ -375,9 +375,11 @@ suspend fun installDistribution() {
375375
wslArguments = arrayOf("--set-default-version", "${wslVersion()}")
376376
)
377377
if (wslVersion() != 1u) {
378-
executeWslCommand(
379-
wslArguments = arrayOf("--update")
380-
)
378+
retry(5) {
379+
executeWslCommand(
380+
wslArguments = arrayOf("--update")
381+
)
382+
}
381383

382384
(2..30)
383385
.asFlow()

0 commit comments

Comments
 (0)