Skip to content

Commit

Permalink
ci: add notice message to skipped k8s versions
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Zieba <marcel.zieba@isovalent.com>
  • Loading branch information
marseel authored and aanm committed May 22, 2024
1 parent ae31ee9 commit 87119e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conformance-aks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
if grep -q -F $VERSION /tmp/output; then
echo "Version $VERSION is valid for location $LOCATION"
else
echo "Removing version $VERSION as it's not valid for location $LOCATION"
echo "::notice::Removing version $VERSION as it's not valid for location $LOCATION"
jq 'del(.include[] | select(.version == "'$VERSION'"))' /tmp/result.json > /tmp/result.json.tmp
mv /tmp/result.json.tmp /tmp/result.json
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance-externalworkloads.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
if grep -q -F $VERSION /tmp/output; then
echo "Version $VERSION is valid for zone $ZONE"
else
echo "Removing version $VERSION as it's not valid for zone $ZONE"
echo "::notice::Removing version $VERSION as it's not valid for zone $ZONE"
jq 'del(.include[] | select(.version == "'$VERSION'"))' /tmp/result.json > /tmp/result.json.tmp
mv /tmp/result.json.tmp /tmp/result.json
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conformance-gke.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
if grep -q -F $VERSION /tmp/output; then
echo "Version $VERSION is valid for zone $ZONE"
else
echo "Removing version $VERSION as it's not valid for zone $ZONE"
echo "::notice::Removing version $VERSION as it's not valid for zone $ZONE"
jq 'del(.k8s[] | select(.version == "'$VERSION'"))' /tmp/result.json > /tmp/result.json.tmp
mv /tmp/result.json.tmp /tmp/result.json
fi
Expand Down

0 comments on commit 87119e9

Please sign in to comment.