All checks were successful
Test / Create distribution (push) Successful in 1m1s
Test / Sandbox (push) Successful in 2m38s
Test / Hakurei (push) Successful in 3m55s
Test / ShareFS (push) Successful in 4m0s
Test / Hpkg (push) Successful in 4m30s
Test / Sandbox (race detector) (push) Successful in 4m57s
Test / Hakurei (race detector) (push) Successful in 6m12s
Test / Flake checks (push) Successful in 1m45s
This builds hakurei in Rosa OS between releases. Signed-off-by: Ophestra <cat@gensokyo.uk>
27 lines
655 B
Go
27 lines
655 B
Go
//go:build current
|
|
|
|
package rosa
|
|
|
|
import (
|
|
_ "embed"
|
|
|
|
"hakurei.app/internal/pkg"
|
|
)
|
|
|
|
const hakureiVersion = "1.0-current"
|
|
|
|
// hakureiSourceTarball is a compressed tarball of the hakurei source code.
|
|
//
|
|
//go:generate tar -zc -C ../.. --exclude .git --exclude *.tar.gz -f hakurei_current.tar.gz .
|
|
//go:embed hakurei_current.tar.gz
|
|
var hakureiSourceTarball []byte
|
|
|
|
// hakureiSource is the source code at the time this package is compiled.
|
|
var hakureiSource = pkg.NewTar(pkg.NewFile(
|
|
"hakurei-current.tar.gz",
|
|
hakureiSourceTarball,
|
|
), pkg.TarGzip)
|
|
|
|
// hakureiPatches are patches applied against the compile-time source tree.
|
|
var hakureiPatches [][2]string
|