This repository was archived by the owner on Mar 9, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Expand file tree Collapse file tree 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ cache: pip
88services :
99 - docker
1010env :
11- - ANSIBLE=2.6
1211 - ANSIBLE=2.7
1312 - ANSIBLE=2.8
13+ - ANSIBLE=2.9
1414matrix :
1515 fast_finish : true
1616install :
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ GIT_URL=${GIT_URL#*//}
4141GIT_TAG=none
4242echo " Last commit message: $TRAVIS_COMMIT_MESSAGE "
4343case " ${TRAVIS_COMMIT_MESSAGE} " in
44- * " [patch]" * |* " [fix]" * ) GIT_TAG=$( git semver --next-patch) ;;
44+ * " [patch]" * |* " [fix]" * | * " [bugfix] " * ) GIT_TAG=$( git semver --next-patch) ;;
4545 * " [minor]" * |* " [feat]" * |* " [feature]" * ) GIT_TAG=$( git semver --next-minor) ;;
4646 * " [major]" * |* " [breaking change]" * ) GIT_TAG=$( git semver --next-major) ;;
4747 * ) echo " Keyword not detected. Doing nothing" ;;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ galaxy_info:
55 role_name : process_exporter
66 license : MIT
77 company : none
8- min_ansible_version : 2.6
8+ min_ansible_version : 2.7
99 platforms :
1010 - name : Ubuntu
1111 versions :
@@ -22,6 +22,7 @@ galaxy_info:
2222 - name : Fedora
2323 versions :
2424 - 30
25+ - 31
2526 galaxy_tags :
2627 - monitoring
2728
Original file line number Diff line number Diff line change 11[tox]
22minversion = 1.8
3- envlist = py{35}-ansible{26, 27,28}
3+ envlist = py{35}-ansible{27,28,29 }
44skipsdist = true
55
66[travis:env]
77ANSIBLE =
8- 2.6: ansible26
98 2.7: ansible27
109 2.8: ansible28
10+ 2.9: ansible29
1111
1212[testenv]
1313passenv = *
1414deps =
1515 -rtest-requirements.txt
16- ansible26: ansible<2.7
1716 ansible27: ansible<2.8
1817 ansible28: ansible<2.9
18+ ansible29: ansible<2.10
1919commands =
2020 {posargs:molecule test --all --destroy always}
You can’t perform that action at this time.
0 commit comments