All checks were successful
Test / Create distribution (push) Successful in 58s
Test / Sandbox (push) Successful in 2m38s
Test / Hakurei (push) Successful in 3m38s
Test / ShareFS (push) Successful in 3m47s
Test / Sandbox (race detector) (push) Successful in 4m58s
Test / Hakurei (race detector) (push) Successful in 5m58s
Test / Flake checks (push) Successful in 1m27s
This also removes the backport patch. Signed-off-by: Ophestra <cat@gensokyo.uk>
19 lines
484 B
Go
19 lines
484 B
Go
//go:build !current
|
|
|
|
package rosa
|
|
|
|
import "hakurei.app/internal/pkg"
|
|
|
|
const hakureiVersion = "0.3.6"
|
|
|
|
// hakureiSource is the source code of a hakurei release.
|
|
var hakureiSource = pkg.NewHTTPGetTar(
|
|
nil, "https://git.gensokyo.uk/security/hakurei/archive/"+
|
|
"v"+hakureiVersion+".tar.gz",
|
|
mustDecode("Yul9J2yV0x453lQP9KUnG_wEJo_DbKMNM7xHJGt4rITCSeX9VRK2J4kzAxcv_0-b"),
|
|
pkg.TarGzip,
|
|
)
|
|
|
|
// hakureiPatches are patches applied against a hakurei release.
|
|
var hakureiPatches [][2]string
|