Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f3dc6e78a7 | ||
|
|
d2a0510cb4 | ||
|
|
583f65040a |
@@ -1,9 +1,9 @@
|
|||||||
name: check
|
name: check
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [main]
|
branches: [main, next]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [main]
|
branches: [main, next]
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -724,6 +724,8 @@ them. We provide:
|
|||||||
then the product image). Either failing fails the script. It runs the
|
then the product image). Either failing fails the script. It runs the
|
||||||
checks in the same containers CI does, from a clean copy of the tree,
|
checks in the same containers CI does, from a clean copy of the tree,
|
||||||
so it also catches anything that depends on host state.
|
so it also catches anything that depends on host state.
|
||||||
|
`.gitea/workflows/check.yml` runs it on every push to `main` and
|
||||||
|
`next` and on every pull request against either.
|
||||||
|
|
||||||
It passes a fresh `--build-arg CHECK_EPOCH` to each build, unique per
|
It passes a fresh `--build-arg CHECK_EPOCH` to each build, unique per
|
||||||
invocation, which both files declare immediately above their check
|
invocation, which both files declare immediately above their check
|
||||||
|
|||||||
@@ -25,6 +25,12 @@ release" is exactly the contradiction
|
|||||||
|
|
||||||
# Completed Steps
|
# Completed Steps
|
||||||
|
|
||||||
|
- 2026-09-21: Made `.gitea/workflows/check.yml` run on pushes to `main`
|
||||||
|
and `next` and on pull requests against either, so unit PRs (whose
|
||||||
|
base is `next`) and `next` itself get a CI run instead of relying on a
|
||||||
|
local `make check`
|
||||||
|
([issue #122](https://git.eeqj.de/sneak/vaultik/issues/122)).
|
||||||
|
|
||||||
- 2026-09-21: Hash-verified the Go toolchain in the release workflow
|
- 2026-09-21: Hash-verified the Go toolchain in the release workflow
|
||||||
([issue #105](https://git.eeqj.de/sneak/vaultik/issues/105)). New
|
([issue #105](https://git.eeqj.de/sneak/vaultik/issues/105)). New
|
||||||
`script/install-go` downloads the exact `go.dev` archive for `go.mod`'s
|
`script/install-go` downloads the exact `go.dev` archive for `go.mod`'s
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ specifying a path using --config or by setting VAULTIK_CONFIG to a path.`,
|
|||||||
}
|
}
|
||||||
|
|
||||||
cmd.Flags().BoolVar(&opts.Cron, "cron", false,
|
cmd.Flags().BoolVar(&opts.Cron, "cron", false,
|
||||||
"Run in cron mode (silent unless error)")
|
"Run in cron mode (silent unless warning or error)")
|
||||||
cmd.Flags().BoolVar(&opts.Prune, "prune", false,
|
cmd.Flags().BoolVar(&opts.Prune, "prune", false,
|
||||||
"After backup, drop older snapshots of the same name and remove "+
|
"After backup, drop older snapshots of the same name and remove "+
|
||||||
"orphaned blobs")
|
"orphaned blobs")
|
||||||
|
|||||||
Reference in New Issue
Block a user