Remove install-cmake.yml (#5581)

This commit is contained in:
Daniel Jurek 2024-04-29 15:15:47 -07:00 committed by GitHub
parent 95cfb845cf
commit ac685055e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 1 additions and 25 deletions

View File

@ -200,8 +200,6 @@ jobs:
workingDirectory: $(Agent.TempDirectory)
displayName: Download and Install Doxygen
- template: /eng/pipelines/templates/steps/install-cmake.yml
- template: /eng/pipelines/templates/steps/setup-msvc.yml
- template: /eng/pipelines/templates/steps/vcpkg.yml

View File

@ -113,8 +113,6 @@ jobs:
- template: /eng/pipelines/templates/steps/setup-msvc.yml
- template: /eng/pipelines/templates/steps/install-cmake.yml
- pwsh: sudo apt update && sudo apt install -y $(AptDependencies)
retryCountOnTaskFailure: 10
condition: and(succeeded(), ne(variables['AptDependencies'], ''))

View File

@ -79,8 +79,6 @@ jobs:
- template: /eng/pipelines/templates/steps/setup-msvc.yml
- template: /eng/pipelines/templates/steps/install-cmake.yml
- pwsh: sudo apt update && sudo apt install -y $(AptDependencies)
retryCountOnTaskFailure: 10
condition: and(succeeded(), ne(variables['AptDependencies'], ''))

View File

@ -106,8 +106,6 @@ jobs:
- template: /eng/pipelines/templates/steps/setup-msvc.yml
- template: /eng/pipelines/templates/steps/install-cmake.yml
# Add g++5 repo to ubuntu
- bash: sudo sh -c "echo 'deb http://ftp.debian.org/debian/ stretch main' >> /etc/apt/sources.list"
displayName: Add g++ 5

View File

@ -50,8 +50,7 @@ extends:
targetVersion: 1.0.0-dev.20240423.2
rootFolder: '$(Build.SourcesDirectory)/sdk/${{parameters.ServiceDirectory}}'
templateFolder: '$(Build.SourcesDirectory)/sdk/${{parameters.ServiceDirectory}}'
- template: /eng/pipelines/templates/steps/install-cmake.yml
ServiceDirectory: ${{ parameters.ServiceDirectory }}
PackageVersions: ${{ parameters.PackageVersions }}
Tests: ${{ parameters.Tests }}

View File

@ -1,15 +0,0 @@
# This temporary fix resolves an issue with CMake and vcpkg. When Linux and
# Windows agents have a later version of CMake installed this can be removed.
parameters:
Version: '3.29.2'
steps:
- bash: |
curl -fsSL "https://github.com/Kitware/CMake/releases/download/v${{ parameters.Version }}/cmake-${{ parameters.Version }}-linux-x86_64.sh" -o cmakeinstall.sh
sudo chmod +x cmakeinstall.sh \
&& sudo ./cmakeinstall.sh --prefix=/usr/local --exclude-subdir \
&& sudo rm cmakeinstall.sh
displayName: Install Cmake ${{ parameters.Version }} (Linux)
condition: and(succeeded(), eq(variables['Agent.OS'], 'Linux'))