Remove install-cmake.yml (#5581)
This commit is contained in:
parent
95cfb845cf
commit
ac685055e6
@ -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
|
||||
|
||||
@ -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'], ''))
|
||||
|
||||
@ -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'], ''))
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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 }}
|
||||
|
||||
@ -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'))
|
||||
Loading…
Reference in New Issue
Block a user