Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/actionlint.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
self-hosted-runner:
labels:
- rmcp-template
- tootie
- unraid
- dookie
- ci-pool-rust
- ci-pool-python
- ci-pool-typescript
Expand Down
14 changes: 10 additions & 4 deletions .github/actions/setup-rust-kache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,15 @@ inputs:
required: false
default: ""
s3-endpoint:
description: S3-compatible endpoint used when credentials are supplied.
description: >-
S3-compatible endpoint used when credentials are supplied. Intentionally
has NO default: this repository is public, and a real endpoint hostname
here would publish internal infrastructure. Every caller that supplies
credentials also passes ${{ vars.KACHE_S3_ENDPOINT }}, so the value lives
in org variables, not in source. An empty value means callers fall back
to local-only caching.
required: false
default: "https://s3.tootie.tv"
default: ""
s3-bucket:
description: S3 bucket containing the shared cache.
required: false
Expand Down Expand Up @@ -225,12 +231,12 @@ runs:
[cache.remote]
type = "s3"
bucket = "kache"
endpoint = "http://10.1.0.2:9000"
endpoint = "http://192.0.2.2:9000"
region = "us-east-1"
prefix = "rust"
profile = "kache"
TOML
echo "kache remote: s3://kache/rust via Tootie MinIO"
echo "kache remote: s3://kache/rust via Nashost MinIO"
else
cat > "$config_file" <<TOML
[cache]
Expand Down
Loading