-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[Packaging] Drop CentOS 7 RPM package #23047
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 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -640,34 +640,7 @@ jobs: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
ArtifactName: rpm-mariner$(tag) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- job: BuildRpmPackageCentOS7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
displayName: Build Rpm Package CentOS 7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Uncomment this line to disable this job on Pull Requests | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# condition: and(succeeded(), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI', 'Manual', 'Schedule')) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pool: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vmImage: 'ubuntu-20.04' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
steps: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- task: Bash@3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
displayName: 'Build Rpm Package' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
inputs: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
targetType: 'filePath' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
filePath: scripts/release/rpm/pipeline.sh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
env: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IMAGE: centos7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- task: AzureArtifacts.manifest-generator-task.manifest-generator-task.ManifestGeneratorTask@0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
displayName: 'SBOM' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
inputs: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
BuildDropPath: $(Build.ArtifactStagingDirectory) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- task: PublishPipelineArtifact@0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
displayName: 'Publish Artifact: rpm' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
inputs: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TargetPath: $(Build.ArtifactStagingDirectory) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Should be 'rpm-centos7', but we keep 'yum' for backward compatibility | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ArtifactName: yum | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# TODO: rpmbuild on Red Hat UBI 8 is slow for unknown reason. Still working with Red Hat to investigate. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# We use a separate job for Red Hat UBI 8 instead of strategy.matrix so that TestRpmPackage can start right after | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# BuildRpmPackageCentOS7 finishes. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- job: BuildRpmPackageUbi8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
displayName: Build Rpm Package Red Hat Universal Base Image 8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Do not run this job for Pull Requests due to the slowness | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -696,7 +669,7 @@ jobs: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
- job: TestRpmPackage | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
displayName: Test Rpm Package | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
timeoutInMinutes: 120 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dependsOn: BuildRpmPackageCentOS7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
dependsOn: BuildRpmPackageUbi8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
condition: and(succeeded(), in(variables['Build.Reason'], 'IndividualCI', 'BatchedCI', 'Manual', 'Schedule')) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
pool: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
vmImage: 'ubuntu-20.04' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -712,19 +685,19 @@ jobs: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
displayName: 'Download Build Artifacts' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
inputs: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
TargetPath: '$(Build.ArtifactStagingDirectory)/rpm' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
artifactName: yum | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
artifactName: rpm-ubi8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
- bash: | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
set -ex | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. The bash's intent is incorrect (it should be 2 whitespace), could you please fix this in this PR? 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. You mean "indent"? You do have sharp eyes. 😀 There are some other occurrences: Lines 500 to 526 in e7279d8
Actually YAML does support arbitrary number of spaces as indent. Let's do this in another PR. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CLI_VERSION=`cat $SYSTEM_ARTIFACTSDIRECTORY/metadata/version` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RPM_NAME=azure-cli-$CLI_VERSION-1.el7.x86_64.rpm | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RPM_NAME=azure-cli-$CLI_VERSION-1.el8.x86_64.rpm | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
RPM_FILE=$SYSTEM_ARTIFACTSDIRECTORY/rpm/$RPM_NAME | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
echo "== Test rpm package on CentOS ==" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
echo "== Test rpm package on Red Hat UBI 8 ==" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IMAGE=centos:centos7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IMAGE=registry.access.redhat.com/ubi8/ubi:8.4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
docker pull $IMAGE | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
docker run --rm -e RPM_NAME=$RPM_NAME -v $SYSTEM_ARTIFACTSDIRECTORY/rpm:/mnt/rpm -v $(pwd):/azure-cli $IMAGE /bin/bash "/azure-cli/scripts/release/rpm/test_rpm_in_docker.sh" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,22 +5,26 @@ set -exv | |
|
||
export USERNAME=azureuser | ||
|
||
yum --nogpgcheck localinstall /mnt/rpm/$RPM_NAME -y | ||
PYTHON_PACKAGE=python39 | ||
PYTHON_CMD=python3.9 | ||
PIP_CMD=pip3.9 | ||
|
||
yum install git gcc python3-devel -y | ||
dnf --nogpgcheck install /mnt/rpm/$RPM_NAME -y | ||
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.
|
||
|
||
ln -s -f /usr/bin/python3 /usr/bin/python | ||
ln -s -f /usr/bin/pip3 /usr/bin/pip | ||
dnf install git gcc $PYTHON_PACKAGE-devel -y | ||
|
||
ln -s -f /usr/bin/$PYTHON_CMD /usr/bin/python | ||
ln -s -f /usr/bin/$PIP_CMD /usr/bin/pip | ||
time az self-test | ||
time az --version | ||
|
||
cd /azure-cli/ | ||
pip3 install wheel | ||
pip install wheel | ||
./scripts/ci/build.sh | ||
pip3 install pytest --prefix /usr/lib64/az | ||
pip3 install pytest-xdist --prefix /usr/lib64/az | ||
pip install pytest --prefix /usr/lib64/az | ||
pip install pytest-xdist --prefix /usr/lib64/az | ||
|
||
find /azure-cli/artifacts/build -name "azure_cli_testsdk*" | xargs pip3 install --prefix /usr/lib64/az --upgrade --ignore-installed | ||
find /azure-cli/artifacts/build -name "azure_cli_fulltest*" | xargs pip3 install --prefix /usr/lib64/az --upgrade --ignore-installed --no-deps | ||
find /azure-cli/artifacts/build -name "azure_cli_testsdk*" | xargs pip install --prefix /usr/lib64/az --upgrade --ignore-installed | ||
find /azure-cli/artifacts/build -name "azure_cli_fulltest*" | xargs pip install --prefix /usr/lib64/az --upgrade --ignore-installed --no-deps | ||
|
||
python3 /azure-cli/scripts/release/rpm/test_rpm_package.py | ||
python /azure-cli/scripts/release/rpm/test_rpm_package.py |
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.
Good news!
BuildRpmPackageUbi8
is not as slow as before. Now it only takes ~20min.