Skip to content

Commit

Permalink
Windows paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
idavis committed Jun 27, 2024
1 parent df54a85 commit 41f9e1d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .ado/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ variables:
RUST_TOOLCHAIN_VERSION: "1.78"
PYTHON_VERSION: "3.11"
LLVM_VERSION: 14
LLVM_DIRECTORY: $(Build.SourcesDirectory)/target/llvm

resources:
repositories:
Expand Down Expand Up @@ -90,6 +89,10 @@ extends:
variables:
${{ if target.ARCHFLAGS }}:
ARCHFLAGS: ${{ target.ARCHFLAGS }}
${{ if target.os == 'windows' }}:
LLVM_DIRECTORY: $(Build.SourcesDirectory)\target\llvm
${{ else }}:
LLVM_DIRECTORY: $(Build.SourcesDirectory)/target/llvm
timeoutInMinutes: 300
templateContext:
outputs:
Expand Down Expand Up @@ -175,6 +178,10 @@ extends:
os: ${{ target.os }}
variables:
arch: ${{ target.arch }}
${{ if target.os == 'windows' }}:
LLVM_DIRECTORY: $(Build.SourcesDirectory)\target\llvm
${{ else }}:
LLVM_DIRECTORY: $(Build.SourcesDirectory)/target/llvm
timeoutInMinutes: 30
templateContext:
inputs: # All input build artifacts must be declared here
Expand Down

0 comments on commit 41f9e1d

Please sign in to comment.