Skip to content
Draft
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: 12 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@ 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:
BUILDX_BUILDER_NAME: ${{ env.BUILDX_BUILDER_NAME }}
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

- name: Install Kagent
id: install-kagent
env:
Expand All @@ -98,7 +109,6 @@ jobs:
--platform=linux/amd64
--push
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 @@ -304,7 +314,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