Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Commit

Permalink
fix tar
Browse files Browse the repository at this point in the history
  • Loading branch information
wfurt committed Aug 5, 2022
1 parent c91a236 commit 5c7034f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions eng/pipelines/templates/build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
- _signingArgs: -sign
/p:DotNetSignType=$(_SignType)
- ${{ if eq(parameters.archType, 'arm64') }}:
- _buildScript: docker run --volume $BUILD_REPOSITORY_LOCALPATH:/msquic -t mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-arm64v8-20220803130954-bfcd90a bash -c "apt-get update && apt-get install -y wget && curl -L https://github.com/PowerShell/PowerShell/releases/download/v7.2.5/powershell-7.2.5-linux-arm64.tar.gz | tar xfz - -C /usr/local/bin/ && /msquic/build.sh "
- _buildScript: docker run --volume $BUILD_REPOSITORY_LOCALPATH:/msquic -t mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-18.04-arm64v8-20220803130954-bfcd90a bash -c "apt-get update && apt-get install -y wget && curl -L -o /tmp/pwsh.tgz https://github.com/PowerShell/PowerShell/releases/download/v7.2.5/powershell-7.2.5-linux-arm64.tar.gz && tar xfz /tmp/pwsh.tgz -C /usr/local/bin/ && /msquic/build.sh "

steps:
- checkout: self
Expand All @@ -94,10 +94,6 @@ jobs:
- script: sudo gem install fpm
displayName: Install fpm

- script: echo Docker $(_docker) is `pwd` out

- script: set

- script: $(_buildScript)
-ci
-c $(_BuildConfig)
Expand Down

0 comments on commit 5c7034f

Please sign in to comment.