Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
podman_tools
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
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
conesphere
podman
tools
podman_tools
Merge requests
!27
Master
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Master
master
into
stable
Overview
0
Commits
5
Pipelines
1
Changes
1
Closed
Michael Thaler
requested to merge
master
into
stable
1 year ago
Overview
0
Commits
5
Pipelines
1
Changes
1
Expand
0
0
Merge request reports
Compare
stable
stable (base)
and
latest version
latest version
c8b03ed2
5 commits,
1 year ago
1 file
+
22
−
61
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
22
−
61
Options
---
stages
:
-
lint
-
build
@@ -12,50 +11,12 @@ include:
variables
:
MAJOR_VERSION
:
"
0.9"
podman_tools_fedora35
:
stage
:
build
tags
:
-
build
image
:
name
:
registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:fc35
script
:
-
'
if
[[
"$CI_COMMIT_REF_NAME"
==
"stable"
]]
;
then
BUILD_PARAMS="isReleaseBuild
true"
;
else
BUILD_PARAMS="isDevBuild
true";
fi'
-
echo "Building ${BUILD_PARAMS}"
-
rpmbuild -v --build-in-place -D "MajorVersion ${MAJOR_VERSION}" -D "${BUILD_PARAMS}" -bb podman-tools.spec
-
cp /root/rpmbuild/RPMS/noarch/podman-tools*.rpm .
artifacts
:
name
:
podman-tools-fedora
paths
:
-
podman-tools*.rpm
expire_in
:
30 day
when
:
always
# when: on_failure
podman_tools_fedora36
:
stage
:
build
tags
:
-
build
image
:
name
:
registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:fc36
script
:
-
'
if
[[
"$CI_COMMIT_REF_NAME"
==
"stable"
]]
;
then
BUILD_PARAMS="isReleaseBuild
true"
;
else
BUILD_PARAMS="isDevBuild
true";
fi'
-
echo "Building ${BUILD_PARAMS}"
-
rpmbuild -v --build-in-place -D "MajorVersion ${MAJOR_VERSION}" -D "${BUILD_PARAMS}" -bb podman-tools.spec
-
cp /root/rpmbuild/RPMS/noarch/podman-tools*.rpm .
artifacts
:
name
:
podman-tools-fedora
paths
:
-
podman-tools*.rpm
expire_in
:
30 day
when
:
always
# when: on_failure
podman_tools_fedora37
:
podman_tools_fedora39
:
stage
:
build
tags
:
-
build
image
:
name
:
registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:fc3
7
name
:
registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:fc3
9
script
:
-
'
if
[[
"$CI_COMMIT_REF_NAME"
==
"stable"
]]
;
then
BUILD_PARAMS="isReleaseBuild
true"
;
else
BUILD_PARAMS="isDevBuild
true";
fi'
-
echo "Building ${BUILD_PARAMS}"
@@ -69,12 +30,12 @@ podman_tools_fedora37:
when
:
always
# when: on_failure
podman_tools_fedora
38
:
podman_tools_fedora
40
:
stage
:
build
tags
:
-
build
image
:
name
:
registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:fc
38
name
:
registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:fc
40
script
:
-
'
if
[[
"$CI_COMMIT_REF_NAME"
==
"stable"
]]
;
then
BUILD_PARAMS="isReleaseBuild
true"
;
else
BUILD_PARAMS="isDevBuild
true";
fi'
-
echo "Building ${BUILD_PARAMS}"
@@ -88,24 +49,24 @@ podman_tools_fedora38:
when
:
always
# when: on_failure
podman_tools_centos8
:
stage
:
build
tags
:
-
build
image
:
name
:
registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:el8
script
:
-
'
if
[[
"$CI_COMMIT_REF_NAME"
==
"stable"
]]
;
then
BUILD_PARAMS="isReleaseBuild
true"
;
else
BUILD_PARAMS="isDevBuild
true";
fi'
-
echo "Building ${BUILD_PARAMS}"
-
rpmbuild -v --build-in-place -D "MajorVersion ${MAJOR_VERSION}" -D "${BUILD_PARAMS}" -bb podman-tools.spec
-
cp /root/rpmbuild/RPMS/noarch/podman-tools*.rpm .
artifacts
:
name
:
podman-tools-centos8
paths
:
-
podman-tools*.rpm
expire_in
:
30 day
when
:
always
# when: on_failure
#
podman_tools_centos8:
#
stage: build
#
tags:
#
- build
#
image:
#
name: registry.conesphere.cloud/conesphere/docker/hub/codelint_fedora:el8
#
script:
#
- 'if [[ "$CI_COMMIT_REF_NAME" == "stable" ]] ; then BUILD_PARAMS="isReleaseBuild true" ; else BUILD_PARAMS="isDevBuild true"; fi'
#
- echo "Building ${BUILD_PARAMS}"
#
- rpmbuild -v --build-in-place -D "MajorVersion ${MAJOR_VERSION}" -D "${BUILD_PARAMS}" -bb podman-tools.spec
#
- cp /root/rpmbuild/RPMS/noarch/podman-tools*.rpm .
#
artifacts:
#
name: podman-tools-centos8
#
paths:
#
- podman-tools*.rpm
#
expire_in: 30 day
#
when: always
#
# when: on_failure
podman_tools_debian
:
stage
:
build
Loading