mirror of
https://github.com/TecharoHQ/anubis.git
synced 2025-08-04 02:08:59 -04:00
feat(yeetfile): build GOARCH=ppc64le packages (#583)
Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
parent
0ed905fd4e
commit
c8635357dc
@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Record if challenges were issued via the API or via embedded JSON in the challenge page HTML ([#531](https://github.com/TecharoHQ/anubis/issues/531))
|
- Record if challenges were issued via the API or via embedded JSON in the challenge page HTML ([#531](https://github.com/TecharoHQ/anubis/issues/531))
|
||||||
- Ensure that clients that are shown a challenge support storing cookies
|
- Ensure that clients that are shown a challenge support storing cookies
|
||||||
- Encode challenge pages with gzip level 1
|
- Encode challenge pages with gzip level 1
|
||||||
|
- Add PowerPC 64 bit little-endian builds (`GOARCH=ppc64le`)
|
||||||
- Add `check-spelling` for spell checking
|
- Add `check-spelling` for spell checking
|
||||||
- Add `--target-insecure-skip-verify` flag/envvar to allow Anubis to hit a self-signed HTTPS backend
|
- Add `--target-insecure-skip-verify` flag/envvar to allow Anubis to hit a self-signed HTTPS backend
|
||||||
- Minor adjustments to FreeBSD rc.d script to allow for more flexible configuration.
|
- Minor adjustments to FreeBSD rc.d script to allow for more flexible configuration.
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
$`npm run assets`;
|
$`npm run assets`;
|
||||||
|
|
||||||
["amd64", "arm64", "riscv64"].forEach(goarch => {
|
[
|
||||||
|
"amd64",
|
||||||
|
"arm64",
|
||||||
|
"ppc64le",
|
||||||
|
"riscv64",
|
||||||
|
].forEach(goarch => {
|
||||||
[deb, rpm, tarball].forEach(method => method.build({
|
[deb, rpm, tarball].forEach(method => method.build({
|
||||||
name: "anubis",
|
name: "anubis",
|
||||||
description: "Anubis weighs the souls of incoming HTTP requests and uses a sha256 proof-of-work challenge in order to protect upstream resources from scraper bots.",
|
description: "Anubis weighs the souls of incoming HTTP requests and uses a sha256 proof-of-work challenge in order to protect upstream resources from scraper bots.",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user