feat: prebaked platform VM #2107
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: integration-test | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| on: | |
| workflow_dispatch: { } | |
| pull_request: | |
| paths: | |
| - 'apps/agentstack-server/**' | |
| - 'apps/agentstack-cli/**' | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'apps/agentstack-server/**' | |
| - 'apps/agentstack-cli/**' | |
| jobs: | |
| integration-test: | |
| timeout-minutes: 25 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Maximize build space | |
| uses: ./.github/actions/maximize-build-space | |
| with: | |
| root-reserve-mb: 15360 | |
| temp-reserve-mb: 2048 | |
| swap-size-mb: 1024 | |
| remove-dotnet: 'true' | |
| - name: "Install QEMU" | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -qqy --no-install-recommends qemu-system-x86 qemu-utils ovmf xorriso | |
| sudo modprobe kvm || true | |
| sudo chown $(whoami) /dev/kvm || true | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: ./.github/actions/setup | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - run: mise run agentstack-server:test:integration | |
| env: | |
| LLM_API_BASE: "${{ secrets.OPENAI_API_BASE }}" | |
| LLM_MODEL: "${{ vars.OPENAI_MODEL }}" | |
| LLM_API_KEY: "${{ secrets.OPENAI_API_KEY }}" | |
| # LLM_API_BASE: "https://api.groq.com/openai/v1" | |
| # LLM_MODEL: "groq:meta-llama/llama-4-maverick-17b-128e-instruct" | |
| # LLM_API_KEY: "${{ secrets.GROQ_API_KEY }}" | |
| - if: failure() | |
| run: | | |
| echo "=== platform VM serial logs ===" && find /home/runner/.agentstack/lima -name 'serial*.log' 2>/dev/null | xargs -r cat | |
| echo "=== builder VM serial logs ===" && find /home/runner/.lima -name 'serial*.log' 2>/dev/null | xargs -r cat | |
| - run: uv cache prune --ci |