Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ansible
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
linters
ansible
Merge requests
!24
Resolve "New ansible-lint not compatible with ansible 2.9"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "New ansible-lint not compatible with ansible 2.9"
25-new-ansible-lint-not-compatible-with-ansible-2-9
into
master
Overview
24
Commits
1
Pipelines
23
Changes
61
Merged
Krzysztof Szymański
requested to merge
25-new-ansible-lint-not-compatible-with-ansible-2-9
into
master
2 years ago
Overview
24
Commits
1
Pipelines
23
Changes
61
Expand
Closes
#25 (closed)
👍
0
👎
0
Merge request reports
Compare
master
version 21
bfca5d75
2 years ago
version 20
29f517bf
2 years ago
version 19
39ed426f
2 years ago
version 18
f27c97d8
2 years ago
version 17
bbc4c39b
2 years ago
version 16
eea9cc8b
2 years ago
version 15
06025fce
2 years ago
version 14
a8114ffd
2 years ago
version 13
b95ea151
2 years ago
version 12
cc174b22
2 years ago
version 11
3f0588cb
2 years ago
version 10
afc693e9
2 years ago
version 9
f8e0763c
2 years ago
version 8
45fc69f0
2 years ago
version 7
dd07120f
2 years ago
version 6
9b4a5b2a
2 years ago
version 5
8e850668
2 years ago
version 4
9cb3c8f5
2 years ago
version 3
21a15d76
2 years ago
version 2
b02c9661
2 years ago
version 1
fcc04757
2 years ago
master (base)
and
latest version
latest version
3420e419
1 commit,
2 years ago
version 21
bfca5d75
1 commit,
2 years ago
version 20
29f517bf
1 commit,
2 years ago
version 19
39ed426f
1 commit,
2 years ago
version 18
f27c97d8
1 commit,
2 years ago
version 17
bbc4c39b
1 commit,
2 years ago
version 16
eea9cc8b
1 commit,
2 years ago
version 15
06025fce
1 commit,
2 years ago
version 14
a8114ffd
1 commit,
2 years ago
version 13
b95ea151
1 commit,
2 years ago
version 12
cc174b22
1 commit,
2 years ago
version 11
3f0588cb
1 commit,
2 years ago
version 10
afc693e9
1 commit,
2 years ago
version 9
f8e0763c
1 commit,
2 years ago
version 8
45fc69f0
1 commit,
2 years ago
version 7
dd07120f
1 commit,
2 years ago
version 6
9b4a5b2a
1 commit,
2 years ago
version 5
8e850668
1 commit,
2 years ago
version 4
9cb3c8f5
1 commit,
2 years ago
version 3
21a15d76
1 commit,
2 years ago
version 2
b02c9661
1 commit,
2 years ago
version 1
fcc04757
2 commits,
2 years ago
61 files
+
278
−
413
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
61
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci/.container-build.gitlab-ci.yml
+
2
−
8
Options
@@ -6,15 +6,9 @@ include:
template-container-build
:
script
:
|
docker build \
--tag ${CONTAINER_NAME}
:${CONTAINER_TAG}
\
--tag ${CONTAINER_NAME} \
--build-arg "ANSIBLE_VERSION=${ANSIBLE_VERSION}" \
--build-arg "ANSIBLE_DEPENDENCIES=${ANSIBLE_DEPENDENCIES}" \
--build-arg "ANSIBLE_LINT_VERSION=${ANSIBLE_LINT_VERSION}" \
.
docker push ${CONTAINER_NAME}:${CONTAINER_TAG}
if [ "${ANSIBLE_DEPENDENCIES}" = "latest" ]; then
docker image tag ${CONTAINER_NAME}:${CONTAINER_TAG} ${CONTAINER_DEFAULT_NAME}
docker push ${CONTAINER_DEFAULT_NAME}
fi
docker push ${CONTAINER_NAME}
rules
:
!reference
[
"
.base_rules"
,
"
rules"
]
parallel
:
!reference
[
"
.version_to_build"
,
"
parallel"
]
Loading