build-smoke-test-env #3
Workflow file for this run
This file contains 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: "build-smoke-test-env" | |
on: | |
push: | |
workflow_dispatch: | |
inputs: | |
gme_initial_version: | |
description: Gloo Mesh Enterprise Build version (can be release or dev build) | |
required: true | |
gme_target_version_tag: | |
description: Gloo Mesh Enterprise Target release version tag (e.g 2.3.4 or v2.3.4) | |
required: false | |
gme_release_to_upgrade_to: | |
description: Which GME release to upgrade to (should be a dev build version) | |
required: false | |
cluster_expiry: | |
description: How long to let the cluster environment run (e.g. 1h, 7d, 2w) | |
required: true | |
default: 4h | |
env: | |
ENVIRONMENT_ID: ${{ inputs.gme_target_version_tag || inputs.gme_initial_version }} | |
#ENVIRONMENT_ID: smoke-test | |
jobs: | |
check-inputs: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: DEBUG | |
run: | | |
echo "Environment ID: ${ENVIRONMENT_ID}" |