Skip to content

Commit

Permalink
For E2E upgrade test, automatically determine the channel to use (#10461
Browse files Browse the repository at this point in the history
)

Signed-off-by: Derek Nola <[email protected]>

Signed-off-by: Derek Nola <[email protected]>
  • Loading branch information
dereknola committed Jul 12, 2024
1 parent 69d6a09 commit 9d1803f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,13 @@ steps:
if [ "$DRONE_BUILD_EVENT" = "pull_request" ]; then
cd ../upgradecluster
vagrant destroy -f
go test -v -timeout=45m ./upgradecluster_test.go -ci -local
# Convert release-1.XX branch to v1.XX channel
if [ "$DRONE_BRANCH" = "master" ]; then
UPGRADE_CHANNEL="latest"
else
UPGRADE_CHANNEL=$(echo $DRONE_BRANCH | sed 's/release-/v/')
fi
E2E_RELEASE_CHANNEL=$UPGRADE_CHANNEL go test -v -timeout=45m ./upgradecluster_test.go -ci -local
cp ./coverage.out /tmp/artifacts/upgrade-coverage.out
fi
- docker stop registry && docker rm registry
Expand Down

0 comments on commit 9d1803f

Please sign in to comment.