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
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
name: ci
on:
pull_request:
types: [opened, synchronize, reopened, edited]
push:
branches: [dev, master]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4
with:
persist-credentials: false
- name: term wall
uses: minspec/.github/.github/actions/term-wall@a5d88bb5b9bb744cf23c8829436e32f03d58c79d # minspec/.github#10
env:
TERM_WALL: ${{ vars.TERM_WALL }}
- name: JSON validity
run: find . -name '*.json' -not -path './.git/*' -print0 | xargs -0 -r -n1 jq empty
- name: YAML validity
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: e2e
# Caller of the org's canonical road test (minspec/workbench e2e.yml):
# this repo's PR rides in its own slot, siblings at dev. One test,
# no copies to drift.
on:
pull_request:
push:
branches: [dev, master]
permissions:
contents: read
jobs:
e2e:
uses: minspec/workbench/.github/workflows/e2e.yml@a84bc5568a33220fd7b4037345c2b38186cff29d # dev
with:
recipes_ref: ${{ github.event.pull_request.head.sha || github.sha }}
workbench_ref: dev
11 changes: 10 additions & 1 deletion .mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,16 @@
"mcpServers": {
"serena": {
"command": "uvx",
"args": ["serena", "start-mcp-server", "--context", "claude-code", "--project", "."]
"args": [
"--from",
"git+https://github.com/oraios/serena@43ae0211d7f3bba4101cd0552707fa21d37f4c84",
"serena",
"start-mcp-server",
"--context",
"claude-code",
"--project",
"."
]
}
}
}
15 changes: 10 additions & 5 deletions index.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"recipes": {},
"branch": "main",
"is_contrib": true,
"recipes": {
"minspec/fixture-hello": [
"1.0"
]
},
"branch": "master",
"is_contrib": false,
"_links": {
"repository": "github.com/minspec/recipes",
"origin_template": "{package}:{version}@github.com/minspec/recipes:main",
"origin_template": "{package}:{version}@github.com/minspec/recipes:master",
"recipe_template": "https://api.github.com/repos/minspec/recipes/contents/{package_dotted}.{version}.json"
}
},
"recipe_template": "https://api.github.com/repos/minspec/recipes/contents/{package_dotted}.{version}.json?ref=master"
}
25 changes: 25 additions & 0 deletions minspec.fixture-hello.1.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"manifests": {
"minspec/fixture-hello": {
"manifest": {
"bundles": {
"Minspec\\FixtureHello\\FixtureHelloBundle": ["all"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
},
"files": {
"config/packages/fixture_hello.yaml": {
"contents": [
"parameters:",
" fixture_hello.greeting: 'wired-by-recipe'",
""
],
"executable": false
}
},
"ref": "e2e-fixture-1.0"
}
}
}
Loading