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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:
# --------------------------------------------------------------------------
_elixir-self-hosted:
name: "Elixir tests (self-hosted)"
if: vars.SELF_HOSTED_CI_ENABLED == 'true'
runs-on: [self-hosted, ubuntu-latest]
# erlef/setup-beam cannot infer the hosted image alias on custom runners.
env:
ImageOS: ubuntu24
continue-on-error: true
timeout-minutes: 15
outputs:
Expand Down Expand Up @@ -89,6 +93,7 @@ jobs:
# --------------------------------------------------------------------------
_node-self-hosted:
name: "Node.js tests & ADR check (self-hosted)"
if: vars.SELF_HOSTED_CI_ENABLED == 'true'
# archgate ships no linux/arm64 binary; route to the macOS (darwin/arm64) self-hosted runner where it is supported.
runs-on: [self-hosted, macOS]
continue-on-error: true
Expand Down Expand Up @@ -150,6 +155,7 @@ jobs:
# --------------------------------------------------------------------------
_python-self-hosted:
name: "Python pipeline-runner (self-hosted)"
if: vars.SELF_HOSTED_CI_ENABLED == 'true'
runs-on: [self-hosted, ubuntu-latest]
continue-on-error: true
timeout-minutes: 10
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ MINIMAX_API_KEY=sk-cp-... mix test --only provider_e2e

### Conventions

- Elixir 1.17+, Erlang/OTP 26+, Zig 0.13.0 (binary builds only)
- Elixir 1.17+, Erlang/OTP 27, Zig 0.13.0 (binary builds only)
- YAML config everywhere; global `~/.musician/config.yaml`, local `.musician/config.yaml`
- API keys always via env var (`api_key_env` field), never hardcoded
- E2E tests tagged `@moduletag :provider_e2e`, `async: false`, skip inline when key absent
Expand Down
Loading
Loading