Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 52575ce

Browse files
committed
Fix verify_tag build stage in Travis pipeline
1 parent cbf95cf commit 52575ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- stage: verify-tag
1515
python: 3.7
1616
script: >
17-
[ "v$(python -c 'import kubernetes ; print(kubernetes.__version__)')" == "${TRAVIS_TAG}" ] &&
17+
[ "v$(python -c 'from scripts.constants import CLIENT_VERSION; print(CLIENT_VERSION)')" == "${TRAVIS_TAG}" ] &&
1818
[[ "${TRAVIS_TAG}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(([ab]|dev|rc)[0-9]+)?$ ]]
1919
- stage: test
2020
python: 2.7

0 commit comments

Comments
 (0)