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
8
8
services :
9
9
- docker
10
10
env :
11
- - ANSIBLE=2.6
12
11
- ANSIBLE=2.7
13
12
- ANSIBLE=2.8
13
+ - ANSIBLE=2.9
14
14
matrix :
15
15
fast_finish : true
16
16
install :
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ GIT_URL=${GIT_URL#*//}
41
41
GIT_TAG=none
42
42
echo " Last commit message: $TRAVIS_COMMIT_MESSAGE "
43
43
case " ${TRAVIS_COMMIT_MESSAGE} " in
44
- * " [patch]" * |* " [fix]" * ) GIT_TAG=$( git semver --next-patch) ;;
44
+ * " [patch]" * |* " [fix]" * | * " [bugfix] " * ) GIT_TAG=$( git semver --next-patch) ;;
45
45
* " [minor]" * |* " [feat]" * |* " [feature]" * ) GIT_TAG=$( git semver --next-minor) ;;
46
46
* " [major]" * |* " [breaking change]" * ) GIT_TAG=$( git semver --next-major) ;;
47
47
* ) echo " Keyword not detected. Doing nothing" ;;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ galaxy_info:
5
5
role_name : process_exporter
6
6
license : MIT
7
7
company : none
8
- min_ansible_version : 2.6
8
+ min_ansible_version : 2.7
9
9
platforms :
10
10
- name : Ubuntu
11
11
versions :
@@ -22,6 +22,7 @@ galaxy_info:
22
22
- name : Fedora
23
23
versions :
24
24
- 30
25
+ - 31
25
26
galaxy_tags :
26
27
- monitoring
27
28
Original file line number Diff line number Diff line change 1
1
[tox]
2
2
minversion = 1.8
3
- envlist = py{35}-ansible{26, 27,28}
3
+ envlist = py{35}-ansible{27,28,29 }
4
4
skipsdist = true
5
5
6
6
[travis:env]
7
7
ANSIBLE =
8
- 2.6: ansible26
9
8
2.7: ansible27
10
9
2.8: ansible28
10
+ 2.9: ansible29
11
11
12
12
[testenv]
13
13
passenv = *
14
14
deps =
15
15
-rtest-requirements.txt
16
- ansible26: ansible<2.7
17
16
ansible27: ansible<2.8
18
17
ansible28: ansible<2.9
18
+ ansible29: ansible<2.10
19
19
commands =
20
20
{posargs:molecule test --all --destroy always}
You can’t perform that action at this time.
0 commit comments