Skip to content
Open
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
14 changes: 11 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,20 @@ jobs:
kubectl rollout status deployment/agent-sandbox-controller -n agent-sandbox-system --timeout=120s
kubectl wait --for=condition=Ready pod -l app=agent-sandbox-controller -n agent-sandbox-system --timeout=120s

- name: Build kagent
env:
DOCKER_BUILD_ARGS: >-
--cache-from=type=gha,scope=${{ needs.setup.outputs.cache-key }}-e2e
--cache-from=type=gha,scope=${{ env.CACHE_KEY_PREFIX }}-main-e2e
--cache-to=type=gha,scope=${{ needs.setup.outputs.cache-key }}-e2e,mode=max
--platform=linux/amd64
--push
run: make build
Comment thread
marcofranssen marked this conversation as resolved.
Comment on lines +88 to +96

- name: Install Kagent
id: install-kagent
env:
OPENAI_API_KEY: fake
BUILDX_BUILDER_NAME: ${{ env.BUILDX_BUILDER_NAME }}
Comment thread
marcofranssen marked this conversation as resolved.
KAGENT_HELM_EXTRA_ARGS: --cleanup-on-fail=false
Comment thread
marcofranssen marked this conversation as resolved.
DOCKER_BUILD_ARGS: >-
--cache-from=type=gha,scope=${{ needs.setup.outputs.cache-key }}-e2e
Expand All @@ -98,7 +107,6 @@ jobs:
--platform=linux/amd64
--push
Comment on lines 103 to 108
run: |
echo "Cache key: ${{ needs.setup.outputs.cache-key }}"
make helm-install
make push-test-agent push-test-skill
kubectl rollout status deployment/kagent-controller -n kagent --timeout=120s
Expand Down Expand Up @@ -305,7 +313,7 @@ jobs:
go-version: "1.26"
cache: true
cache-dependency-path: go/go.sum
- name: golangci-lint
- name: golangci-lint
working-directory: go
run: make lint

Expand Down
Loading