253 lines
8.2 KiB
YAML
253 lines
8.2 KiB
YAML
name: Pipeline
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["CI"]
|
|
types: [completed]
|
|
branches: [main]
|
|
|
|
concurrency:
|
|
group: pipeline-${{ github.sha }}
|
|
cancel-in-progress: false
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
dev-publish:
|
|
name: Dev Publish
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/gsd-build/gsd-ci-builder:latest
|
|
credentials:
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
outputs:
|
|
dev-version: ${{ steps.stamp.outputs.version }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Mark workspace safe for git
|
|
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
registry-url: https://registry.npmjs.org
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Stamp dev version and sync platform packages
|
|
id: stamp
|
|
run: |
|
|
npm run pipeline:version-stamp
|
|
npm run sync-platform-versions
|
|
echo "version=$(node -e 'process.stdout.write(require("./package.json").version)')" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Publish @dev
|
|
run: |
|
|
VERSION=$(node -e 'process.stdout.write(require("./package.json").version)')
|
|
if npm view "gsd-pi@${VERSION}" version 2>/dev/null; then
|
|
echo "Version ${VERSION} already published — skipping"
|
|
else
|
|
npm publish --tag dev
|
|
fi
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Smoke test (local)
|
|
run: |
|
|
chmod +x dist/loader.js
|
|
export GSD_SMOKE_BINARY="$(pwd)/dist/loader.js"
|
|
npm run test:smoke
|
|
|
|
test-verify:
|
|
name: Test & Verify
|
|
needs: dev-publish
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
registry-url: https://registry.npmjs.org
|
|
|
|
- name: Install gsd-pi@dev globally
|
|
run: npm install -g gsd-pi@dev
|
|
|
|
- name: Run smoke tests (against installed binary)
|
|
run: |
|
|
export GSD_SMOKE_BINARY=$(which gsd)
|
|
npm run test:smoke
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Run fixture tests
|
|
run: npm run test:fixtures
|
|
|
|
- name: Run live regression tests (against installed binary)
|
|
run: |
|
|
export GSD_SMOKE_BINARY=$(which gsd)
|
|
npm run test:live-regression
|
|
|
|
- name: Promote to @next
|
|
run: npm dist-tag add gsd-pi@${{ needs.dev-publish.outputs.dev-version }} next
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Log in to GHCR
|
|
uses: docker/login-action@v4
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push runtime Docker image
|
|
run: |
|
|
docker build --target runtime \
|
|
-t ghcr.io/gsd-build/gsd-pi:next \
|
|
-t ghcr.io/gsd-build/gsd-pi:${{ needs.dev-publish.outputs.dev-version }} \
|
|
.
|
|
docker push ghcr.io/gsd-build/gsd-pi:next
|
|
docker push ghcr.io/gsd-build/gsd-pi:${{ needs.dev-publish.outputs.dev-version }}
|
|
|
|
prod-release:
|
|
name: Production Release
|
|
needs: [dev-publish, test-verify]
|
|
runs-on: ubuntu-latest
|
|
environment: prod
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
token: ${{ secrets.RELEASE_PAT }}
|
|
|
|
- uses: actions/setup-node@v6
|
|
with:
|
|
node-version: 24
|
|
registry-url: https://registry.npmjs.org
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Run live LLM tests (optional)
|
|
continue-on-error: true
|
|
run: npm run test:live
|
|
env:
|
|
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
|
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
|
GSD_LIVE_TESTS: "1"
|
|
|
|
- name: Generate changelog and determine version
|
|
id: release
|
|
run: |
|
|
OUTPUT=$(node scripts/generate-changelog.mjs)
|
|
echo "$OUTPUT" | jq .
|
|
echo "version=$(echo "$OUTPUT" | jq -r '.newVersion')" >> "$GITHUB_OUTPUT"
|
|
echo "$OUTPUT" | jq -r '.changelogEntry' > /tmp/changelog-entry.md
|
|
echo "$OUTPUT" | jq -r '.releaseNotes' > /tmp/release-notes.md
|
|
|
|
- name: Bump version and sync packages
|
|
run: node scripts/bump-version.mjs "${{ steps.release.outputs.version }}"
|
|
|
|
- name: Update CHANGELOG.md
|
|
run: node scripts/update-changelog.mjs /tmp/changelog-entry.md
|
|
|
|
- name: Commit, tag, and push
|
|
run: |
|
|
git config user.name "github-actions[bot]"
|
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
git add package.json package-lock.json CHANGELOG.md native/npm/*/package.json pkg/package.json packages/pi-coding-agent/package.json
|
|
git commit -m "release: v${{ steps.release.outputs.version }}"
|
|
git tag "v${{ steps.release.outputs.version }}"
|
|
git push origin main
|
|
git push origin "v${{ steps.release.outputs.version }}"
|
|
|
|
- name: Build release
|
|
run: npm run build
|
|
|
|
- name: Publish release to npm @latest
|
|
run: |
|
|
OUTPUT=$(npm publish 2>&1) && echo "$OUTPUT" || {
|
|
if echo "$OUTPUT" | grep -q "cannot publish over the previously published"; then
|
|
echo "Version already published — promoting to latest"
|
|
npm dist-tag add gsd-pi@${{ steps.release.outputs.version }} latest
|
|
else
|
|
echo "$OUTPUT"
|
|
exit 1
|
|
fi
|
|
}
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- name: Create GitHub Release
|
|
env:
|
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
run: |
|
|
gh release create "v${{ steps.release.outputs.version }}" \
|
|
--title "v${{ steps.release.outputs.version }}" \
|
|
--notes-file /tmp/release-notes.md \
|
|
--latest
|
|
|
|
- name: Post to Discord
|
|
if: ${{ env.DISCORD_WEBHOOK != '' }}
|
|
env:
|
|
DISCORD_WEBHOOK: ${{ secrets.DISCORD_CHANGELOG_WEBHOOK }}
|
|
run: |
|
|
VERSION="${{ steps.release.outputs.version }}"
|
|
NOTES=$(cat /tmp/release-notes.md)
|
|
curl -s -X POST "$DISCORD_WEBHOOK" \
|
|
-H "Content-Type: application/json" \
|
|
-d "$(jq -n --arg c "**GSD v${VERSION} Released**\n\n${NOTES}\n\n\`npm i gsd-pi@${VERSION}\`" '{content:$c}')"
|
|
|
|
- name: Log in to GHCR
|
|
uses: docker/login-action@v4
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Tag runtime Docker image as latest
|
|
run: |
|
|
docker pull ghcr.io/gsd-build/gsd-pi:${{ needs.dev-publish.outputs.dev-version }}
|
|
docker tag ghcr.io/gsd-build/gsd-pi:${{ needs.dev-publish.outputs.dev-version }} ghcr.io/gsd-build/gsd-pi:latest
|
|
docker push ghcr.io/gsd-build/gsd-pi:latest
|
|
|
|
update-builder:
|
|
name: Update CI Builder Image
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
|
|
- name: Check for Dockerfile changes
|
|
id: check
|
|
run: |
|
|
CHANGED=$(git diff --name-only ${{ github.event.workflow_run.head_sha }}~1 ${{ github.event.workflow_run.head_sha }} -- Dockerfile || echo "")
|
|
echo "changed=$([[ -n \"$CHANGED\" ]] && echo 'true' || echo 'false')" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Log in to GHCR
|
|
if: steps.check.outputs.changed == 'true'
|
|
uses: docker/login-action@v4
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build and push CI builder image
|
|
if: steps.check.outputs.changed == 'true'
|
|
run: |
|
|
docker build --target builder \
|
|
-t ghcr.io/gsd-build/gsd-ci-builder:latest \
|
|
.
|
|
docker push ghcr.io/gsd-build/gsd-ci-builder:latest
|