-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[Packaging] Drop Mariner 1.0 RPM package #24039
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -600,21 +600,15 @@ jobs: | |
| vmImage: 'ubuntu-20.04' | ||
| strategy: | ||
| matrix: | ||
| 1.0: | ||
| image: cblmariner.azurecr.io/base/core | ||
| tag: 1.0 | ||
| 2.0: | ||
| image: mcr.microsoft.com/cbl-mariner/base/core | ||
| tag: 2.0 | ||
| image: mcr.microsoft.com/cbl-mariner/base/core:2.0 | ||
| artifact: rpm-mariner2.0 | ||
| steps: | ||
| - task: Bash@3 | ||
| displayName: 'Build Rpm Package: Mariner' | ||
| inputs: | ||
| targetType: 'filePath' | ||
| filePath: scripts/release/rpm/pipeline_mariner.sh | ||
| env: | ||
| IMAGE: $(image) | ||
| TAG: $(tag) | ||
|
Comment on lines
-615
to
-617
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
So we don't need to explicitly declare env vars. |
||
|
|
||
| - task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 | ||
| displayName: 'SBOM' | ||
|
|
@@ -625,7 +619,7 @@ jobs: | |
| displayName: 'Publish Artifact: rpm-mariner' | ||
| inputs: | ||
| TargetPath: $(Build.ArtifactStagingDirectory) | ||
| ArtifactName: rpm-mariner$(tag) | ||
| ArtifactName: $(artifact) | ||
|
|
||
| # TODO: rpmbuild on Red Hat UBI 8 is slow for unknown reason. Still working with Red Hat to investigate. | ||
| - job: BuildRpmPackages | ||
|
|
@@ -662,9 +656,6 @@ jobs: | |
| inputs: | ||
| targetType: 'filePath' | ||
| filePath: scripts/release/rpm/pipeline.sh | ||
| env: | ||
| IMAGE: $(image) | ||
| TAG: $(tag) | ||
| - task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 | ||
| displayName: 'SBOM' | ||
| inputs: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to have a separate variable
tag. We can combine it withimage.