483fa224a2
Co-authored-by: kiloconnect[bot] <240665456+kiloconnect[bot]@users.noreply.github.com>
142 lines
4.3 KiB
YAML
142 lines
4.3 KiB
YAML
name: test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
# Keep every run on main so cancelled checks do not pollute the default branch
|
|
# commit history. PRs and other branches still share a group and cancel stale runs.
|
|
group: ${{ case(github.ref == 'refs/heads/main', format('{0}-{1}', github.workflow, github.run_id), format('{0}-{1}', github.workflow, github.event.pull_request.number || github.ref)) }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
checks: write
|
|
|
|
env:
|
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
|
|
jobs:
|
|
# kilocode_change start
|
|
unit:
|
|
name: unit (${{ matrix.settings.name }})
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
settings:
|
|
- name: linux
|
|
host: blacksmith-4vcpu-ubuntu-2404 # kilocode_change
|
|
- name: windows
|
|
host: blacksmith-4vcpu-windows-2025 # kilocode_change
|
|
runs-on: ${{ matrix.settings.host }}
|
|
timeout-minutes: 45 # kilocode_change
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6 # kilocode_change
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# kilocode_change start
|
|
- name: Setup Node
|
|
id: setup-node
|
|
continue-on-error: ${{ runner.os == 'Windows' }}
|
|
uses: actions/setup-node@v6 # kilocode_change
|
|
with:
|
|
node-version: "24"
|
|
|
|
- name: Retry Setup Node on Windows
|
|
if: runner.os == 'Windows' && steps.setup-node.outcome == 'failure'
|
|
uses: actions/setup-node@v6
|
|
with:
|
|
node-version: "24"
|
|
# kilocode_change end
|
|
|
|
- name: Setup Bun
|
|
uses: ./.github/actions/setup-bun
|
|
|
|
- name: Configure git identity
|
|
run: |
|
|
git config --global user.email "kilo-maintainer[bot]@users.noreply.github.com"
|
|
git config --global user.name "kilo-maintainer[bot]"
|
|
|
|
- name: Cache Turbo
|
|
uses: actions/cache@v5 # kilocode_change
|
|
with:
|
|
path: node_modules/.cache/turbo
|
|
key: turbo-${{ runner.os }}-${{ hashFiles('turbo.json', '**/package.json') }}-${{ github.sha }}
|
|
restore-keys: |
|
|
turbo-${{ runner.os }}-${{ hashFiles('turbo.json', '**/package.json') }}-
|
|
turbo-${{ runner.os }}-
|
|
|
|
- name: Run unit tests
|
|
run: bun turbo test:ci --filter='!@kilocode/kilo-jetbrains'
|
|
env:
|
|
KILO_EXPERIMENTAL_DISABLE_FILEWATCHER: ${{ runner.os == 'Windows' && 'true' || 'false' }}
|
|
|
|
- name: Run HttpApi exerciser gates
|
|
if: runner.os == 'Linux'
|
|
working-directory: packages/opencode
|
|
run: bun run test:httpapi
|
|
|
|
# kilocode_change start
|
|
- name: Test approval policy
|
|
if: runner.os == 'Linux'
|
|
working-directory: script/kilocode
|
|
run: bun test approval-policy.test.ts
|
|
# kilocode_change end
|
|
|
|
- name: Publish unit reports
|
|
if: always()
|
|
uses: mikepenz/action-junit-report@bccf2e31636835cf0874589931c4116687171386 # v6.4.0
|
|
with:
|
|
report_paths: packages/*/.artifacts/unit/junit.xml
|
|
check_name: "unit results (${{ matrix.settings.name }})"
|
|
detailed_summary: true
|
|
include_time_in_summary: true
|
|
fail_on_failure: false
|
|
|
|
- name: Upload unit artifacts
|
|
if: always()
|
|
uses: actions/upload-artifact@v7 # kilocode_change
|
|
with:
|
|
name: unit-${{ matrix.settings.name }}-${{ github.run_attempt }}
|
|
include-hidden-files: true
|
|
if-no-files-found: ignore
|
|
retention-days: 7
|
|
path: packages/*/.artifacts/unit/junit.xml
|
|
# kilocode_change end
|
|
|
|
# kilocode_change start
|
|
jetbrains:
|
|
name: jetbrains
|
|
permissions:
|
|
contents: read
|
|
checks: write
|
|
pull-requests: read
|
|
uses: ./.github/workflows/test-jetbrains.yml
|
|
# kilocode_change end
|
|
|
|
# kilocode_change start
|
|
required:
|
|
name: test (linux)
|
|
runs-on: blacksmith-4vcpu-ubuntu-2404
|
|
needs:
|
|
- unit
|
|
- jetbrains
|
|
if: always()
|
|
steps:
|
|
- name: Verify upstream test jobs passed
|
|
run: |
|
|
echo "unit=${{ needs.unit.result }}"
|
|
echo "jetbrains=${{ needs.jetbrains.result }}"
|
|
test "${{ needs.unit.result }}" = "success"
|
|
test "${{ needs.jetbrains.result }}" = "success"
|
|
# kilocode_change end
|