Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 5 additions & 1 deletion .github/actions/run-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@ inputs:
provider-binary:
description: Optional path to a Terraform provider binary in the caller workspace.
required: false
e2e-ref:
description: Ref of agynio/e2e to checkout for suite files.
required: false
default: main
runs:
using: composite
steps:
- name: Checkout e2e repository
uses: actions/checkout@v4
with:
repository: agynio/e2e
ref: main
ref: ${{ inputs.e2e-ref }}
path: e2e

- name: Stage provider binary
Expand Down
2 changes: 1 addition & 1 deletion suites/go-core/tests/llm_gateway_helpers_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//go:build e2e && (svc_agents_orchestrator || svc_llm || svc_llm_proxy || smoke)
//go:build e2e && (svc_agents_orchestrator || svc_runners || svc_llm || svc_llm_proxy || smoke)

package tests

Expand Down
4 changes: 4 additions & 0 deletions suites/go-core/tests/runners_sampled_at_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,6 +326,8 @@ func createRunnerWorkload(t *testing.T, ctx context.Context, runnerClient runner
AgentId: agentID,
OrganizationId: organizationID,
Status: runnersv1.WorkloadStatus_WORKLOAD_STATUS_RUNNING,
OwnerKind: runnersv1.RuntimeOwnerKind_RUNTIME_OWNER_KIND_AGENT_INSTANCE,
OwnerId: agentID,
Containers: runnerDefaultContainers(),
ZitiIdentityId: "ziti-test",
})
Expand All @@ -352,6 +354,8 @@ func createRunnerVolume(t *testing.T, ctx context.Context, runnerClient runnersv
OrganizationId: organizationID,
SizeGb: "10",
Status: runnersv1.VolumeStatus_VOLUME_STATUS_PROVISIONING,
OwnerKind: runnersv1.RuntimeOwnerKind_RUNTIME_OWNER_KIND_AGENT_INSTANCE,
OwnerId: agentID,
})
if err != nil {
t.Fatalf("CreateVolume failed: %v", err)
Expand Down
2 changes: 2 additions & 0 deletions suites/go-core/tests/runners_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ func TestRunnerLifecycle(t *testing.T) {
AgentId: agentID,
OrganizationId: organizationID,
Status: runnersv1.WorkloadStatus_WORKLOAD_STATUS_STARTING,
OwnerKind: runnersv1.RuntimeOwnerKind_RUNTIME_OWNER_KIND_AGENT_INSTANCE,
Comment thread
noa-lucent marked this conversation as resolved.
OwnerId: agentID,
Containers: runnerDefaultContainers(),
ZitiIdentityId: "ziti-test",
})
Expand Down
Loading