Skip to content
Open
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
5 changes: 5 additions & 0 deletions .github/shared-actions/start-venv/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ inputs:
description: "Should the venv disable dashboard"
required: false
default: "false"
extended:
description: "Should the venv deploy the extended applications"
required: false
default: "false"
ref:
description: "The branch name to start the venv from"
required: false
Expand Down Expand Up @@ -82,6 +86,7 @@ runs:
venvRepository: ${{ inputs.venvRepository }}
venvRepositoryMainBranchName: ${{ inputs.venvRepositoryMainBranchName }}
disableDashboard: ${{ inputs.disableDashboard }}
extended: ${{ inputs.extended }}
branchName: ${{ inputs.ref }}
- name: Commit venv file to repo
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ai-agent-test-suite.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ jobs:
with:
volatileEnvironment: true
triggerSlack: false
extended: true
ref: ${{ inputs.ref }}
secrets: inherit

Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/build-docker-start-venv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ on:
required: false
description: 'Set to true in order to disable starting dashboard application'
default: false
extended:
type: boolean
required: false
description: 'Set to true in order to deploy the extended applications into the venv, currently mcp-gateway and custom-code'
default: false
ref:
type: string
required: false
Expand Down Expand Up @@ -102,6 +107,7 @@ jobs:
leaseTime: ${{ inputs.leaseTime }}
venvRepoDirectory: ${{ github.workspace }}/venv/environments
disableDashboard: ${{ inputs.disableDashboard }}
extended: ${{ inputs.extended }}
ref: ${{ inputs.ref }}
- name: Generate matrix for docker build
uses: actions/github-script@v7
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/start-venv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ on:
required: false
description: 'Set to true in order to disable starting dashboard application'
default: false
extended:
type: boolean
required: false
description: 'Set to true in order to deploy the extended applications into the venv, currently mcp-gateway and custom-code'
default: false
ref:
type: string
required: false
Expand Down Expand Up @@ -112,6 +117,7 @@ jobs:
leaseTime: ${{ inputs.leaseTime }}
venvRepoDirectory: ${{ github.workspace }}/venv/environments
disableDashboard: ${{ inputs.disableDashboard }}
extended: ${{ inputs.extended }}
ref: ${{ inputs.ref }}
- name: Generate matrix for docker build
uses: actions/github-script@v7
Expand Down