Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add simpler measure other workflows to retrieve docker images values #4125

Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
test more
Signed-off-by: Peter Zhu <zhujiaxi@amazon.com>
peterzhuamazon committed Oct 12, 2023
commit 10a31b6b51cfd8feaa120a78aa563be74f796245
9 changes: 5 additions & 4 deletions .github/workflows/get-ci-image-tag.yml
Original file line number Diff line number Diff line change
@@ -10,7 +10,6 @@ on:
platform:
required: false
type: string
default: 'centos7'
build_ref:
required: false
type: string
@@ -41,9 +40,11 @@ jobs:
run: |
PRODUCT=${{ inputs.product }}
PLATFORM=${{ inputs.platform }}
if [[ ! -z "$PLATFORM" ]]; then
if [[ "$PRODUCT" != "opensearch" ]]; then
PLATFORM="rockylinux8" # Temp measure before centos7 deprecation on opensearch for k-NN
if [[ -z "$PLATFORM" ]]; then
if [[ "$PRODUCT" = "opensearch" ]]; then
PLATFORM="centos7" # Temp measure before centos7 deprecation on opensearch for k-NN
else
PLATFORM="rockylinux8"
fi
fi
crane version