| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- name: Test Agents
- on:
- pull_request:
- branches: [ main, dev ]
- paths:
- - '.opencode/agent/**'
- - 'evals/**'
- - '.github/workflows/test-agents.yml'
- push:
- branches: [ main ]
- workflow_dispatch:
- jobs:
- test-openagent:
- name: Test OpenAgent
- runs-on: ubuntu-latest
- timeout-minutes: 10
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v4
-
- - name: Setup Node.js
- uses: actions/setup-node@v4
- with:
- node-version: '20'
- cache: 'npm'
- cache-dependency-path: 'evals/framework/package-lock.json'
-
- - name: Install dependencies
- run: |
- cd evals/framework
- npm ci
-
- - name: Build framework
- run: |
- cd evals/framework
- npm run build
-
- - name: Run OpenAgent smoke test
- run: npm run test:ci:openagent
- env:
- CI: true
-
- - name: Upload test results
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: openagent-results
- path: evals/results/
- retention-days: 30
- test-opencoder:
- name: Test OpenCoder
- runs-on: ubuntu-latest
- timeout-minutes: 10
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v4
-
- - name: Setup Node.js
- uses: actions/setup-node@v4
- with:
- node-version: '20'
- cache: 'npm'
- cache-dependency-path: 'evals/framework/package-lock.json'
-
- - name: Install dependencies
- run: |
- cd evals/framework
- npm ci
-
- - name: Build framework
- run: |
- cd evals/framework
- npm run build
-
- - name: Run OpenCoder smoke test
- run: npm run test:ci:opencoder
- env:
- CI: true
-
- - name: Upload test results
- if: always()
- uses: actions/upload-artifact@v4
- with:
- name: opencoder-results
- path: evals/results/
- retention-days: 30
- report-results:
- name: Report Test Results
- runs-on: ubuntu-latest
- needs: [test-openagent, test-opencoder]
- if: always()
-
- steps:
- - name: Download OpenAgent results
- uses: actions/download-artifact@v4
- with:
- name: openagent-results
- path: results/openagent
- continue-on-error: true
-
- - name: Download OpenCoder results
- uses: actions/download-artifact@v4
- with:
- name: opencoder-results
- path: results/opencoder
- continue-on-error: true
-
- - name: Display results summary
- run: |
- echo "## Test Results Summary" >> $GITHUB_STEP_SUMMARY
- echo "" >> $GITHUB_STEP_SUMMARY
-
- if [ -f results/openagent/latest.json ]; then
- echo "### OpenAgent" >> $GITHUB_STEP_SUMMARY
- cat results/openagent/latest.json | jq -r '"- Passed: \(.passed)\n- Failed: \(.failed)\n- Total: \(.total)"' >> $GITHUB_STEP_SUMMARY
- fi
-
- if [ -f results/opencoder/latest.json ]; then
- echo "" >> $GITHUB_STEP_SUMMARY
- echo "### OpenCoder" >> $GITHUB_STEP_SUMMARY
- cat results/opencoder/latest.json | jq -r '"- Passed: \(.passed)\n- Failed: \(.failed)\n- Total: \(.total)"' >> $GITHUB_STEP_SUMMARY
- fi
- auto-version-bump:
- name: Auto Version Bump
- runs-on: ubuntu-latest
- needs: [test-openagent, test-opencoder]
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
-
- steps:
- - name: Checkout code
- uses: actions/checkout@v4
- with:
- fetch-depth: 0
- token: ${{ secrets.GITHUB_TOKEN }}
-
- - name: Setup Node.js
- uses: actions/setup-node@v4
- with:
- node-version: '20'
-
- - name: Configure Git
- run: |
- git config user.name "github-actions[bot]"
- git config user.email "github-actions[bot]@users.noreply.github.com"
-
- - name: Determine version bump type
- id: bump-type
- run: |
- # Get the last commit message
- COMMIT_MSG=$(git log -1 --pretty=%B)
-
- # Determine bump type from commit message
- if echo "$COMMIT_MSG" | grep -qiE "^(feat|feature)\(.*\)!:|^BREAKING CHANGE:|^[a-z]+!:"; then
- echo "type=major" >> $GITHUB_OUTPUT
- echo "Detected BREAKING CHANGE - bumping major version"
- elif echo "$COMMIT_MSG" | grep -qiE "^(feat|feature)(\(.*\))?:"; then
- echo "type=minor" >> $GITHUB_OUTPUT
- echo "Detected feature - bumping minor version"
- elif echo "$COMMIT_MSG" | grep -qiE "^(fix|bugfix)(\(.*\))?:"; then
- echo "type=patch" >> $GITHUB_OUTPUT
- echo "Detected fix - bumping patch version"
- elif echo "$COMMIT_MSG" | grep -qiE "^\[alpha\]"; then
- echo "type=alpha" >> $GITHUB_OUTPUT
- echo "Detected [alpha] tag - bumping alpha version"
- elif echo "$COMMIT_MSG" | grep -qiE "^\[beta\]"; then
- echo "type=beta" >> $GITHUB_OUTPUT
- echo "Detected [beta] tag - bumping beta version"
- elif echo "$COMMIT_MSG" | grep -qiE "^\[rc\]"; then
- echo "type=rc" >> $GITHUB_OUTPUT
- echo "Detected [rc] tag - bumping rc version"
- else
- echo "type=minor" >> $GITHUB_OUTPUT
- echo "No specific type detected - defaulting to minor version bump"
- fi
-
- - name: Bump version
- run: |
- BUMP_TYPE="${{ steps.bump-type.outputs.type }}"
-
- # Get current version
- CURRENT_VERSION=$(cat VERSION)
- echo "Current version: $CURRENT_VERSION"
-
- # Bump version in package.json
- npm run version:bump:$BUMP_TYPE
-
- # Get new version
- NEW_VERSION=$(cat VERSION)
- echo "New version: $NEW_VERSION"
-
- # Update CHANGELOG.md
- DATE=$(date +%Y-%m-%d)
- COMMIT_MSG=$(git log -1 --pretty=%B)
-
- # Create changelog entry
- cat > /tmp/changelog_entry.md << EOF
- ## [$NEW_VERSION] - $DATE
-
- ### Changes
- - $COMMIT_MSG
-
- EOF
-
- # Prepend to CHANGELOG.md (after the header)
- if [ -f CHANGELOG.md ]; then
- # Insert after the first occurrence of "## ["
- awk '/^## \[/ && !found {print; system("cat /tmp/changelog_entry.md"); found=1; next} 1' CHANGELOG.md > /tmp/changelog_new.md
- mv /tmp/changelog_new.md CHANGELOG.md
- fi
-
- - name: Commit version bump
- run: |
- NEW_VERSION=$(cat VERSION)
-
- git add VERSION package.json CHANGELOG.md
- git commit -m "chore: bump version to v$NEW_VERSION [skip ci]"
- git tag "v$NEW_VERSION"
-
- - name: Push changes
- run: |
- git push origin main --tags
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|