-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically update the dapr version in long haul tests on new relea…
…ses (dapr#8075) * Updates longhaul tests when a new release is created Signed-off-by: Elena Kolevska <elena@kolevska.com> * fix getting version Signed-off-by: Elena Kolevska <elena@kolevska.com> * gh Signed-off-by: Elena Kolevska <elena@kolevska.com> * Checks if the version is newer before updating longhauls Signed-off-by: Elena Kolevska <elena@kolevska.com> * Changes wording Signed-off-by: Elena Kolevska <elena@kolevska.com> * Update .github/workflows/dapr.yml Co-authored-by: Mike Nguyen <hey@mike.ee> Signed-off-by: Elena Kolevska <elena-kolevska@users.noreply.github.com> * cleans up script Signed-off-by: Elena Kolevska <elena@kolevska.com> * Env variable name change for clarity Signed-off-by: Elena Kolevska <elena@kolevska.com> * extracts longhaul test repo name in a var, for easier testing Signed-off-by: Elena Kolevska <elena@kolevska.com> * Update .github/workflows/dapr.yml Co-authored-by: Mike Nguyen <hey@mike.ee> Signed-off-by: Elena Kolevska <elena-kolevska@users.noreply.github.com> --------- Signed-off-by: Elena Kolevska <elena@kolevska.com> Signed-off-by: Elena Kolevska <elena-kolevska@users.noreply.github.com> Co-authored-by: Mike Nguyen <hey@mike.ee> Co-authored-by: Cassie Coyle <cassie@diagrid.io>
- Loading branch information
1 parent
349cfe0
commit b26a195
Showing
2 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# | ||
# Copyright 2024 The Dapr Authors | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# | ||
|
||
# This script parses release version from Git tag and set the parsed version to | ||
# environment variable, REL_VERSION. If the tag is the final version, it sets | ||
# LATEST_RELEASE to true to add 'latest' tag to docker image. | ||
|
||
import os | ||
import sys | ||
from packaging.version import Version, InvalidVersion | ||
|
||
# compare_versions returns True if the comparison is successful. | ||
# It returns False if the versions are invalid. | ||
# The result of the comparison is written to the VERSION_UPDATE_REQUIRED GitHub environment variable. | ||
def compare_versions(new_version, existing_version) -> bool: | ||
try: | ||
new_ver = Version(new_version) | ||
existing_ver = Version(existing_version) | ||
except InvalidVersion: | ||
print("Invalid version format") | ||
return False | ||
|
||
update_required = new_ver > existing_ver | ||
status_message = "New version is greater than existing version." if update_required else "New version is not greater. Skipping update." | ||
print(status_message) | ||
|
||
# Write the update requirement status to GITHUB_ENV | ||
github_env_path = os.getenv("GITHUB_ENV") | ||
if github_env_path: | ||
with open(github_env_path, "a") as github_env: | ||
github_env.write(f"VERSION_UPDATE_REQUIRED={str(update_required).lower()}\n") | ||
|
||
return True | ||
|
||
if len(sys.argv) != 3: | ||
print("Usage: compare_versions.py <new_version> <existing_version>") | ||
sys.exit(1) | ||
|
||
new_version = sys.argv[1] | ||
existing_version = sys.argv[2] | ||
|
||
if compare_versions(new_version, existing_version): | ||
sys.exit(0) | ||
else: | ||
sys.exit(1) |
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