mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
b4915a4bd7
Following #6604, I have reset all of our Windows nodes, so hopefully there is no broken local cache remaining. CHANGELOG_BEGIN CHANGELOG_END
53 lines
1.7 KiB
PowerShell
53 lines
1.7 KiB
PowerShell
Set-StrictMode -Version latest
|
||
$ErrorActionPreference = 'Stop'
|
||
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
||
# SPDX-License-Identifier: Apache-2.0
|
||
|
||
# Build the release artifacts required for running the compatibility
|
||
# tests against HEAD. At the moment this includes the SDK release tarball
|
||
# and the ledger-api-test-tool fat JAR.
|
||
|
||
$test_args = "//..."
|
||
if (($args.length -ge 1) -and ($args[0] -eq "--quick")) {
|
||
$test_args = "//:head-quick"
|
||
}
|
||
write-output $test_args
|
||
|
||
# For reasons I do not understand, it seems to be important
|
||
# to sync here even though we sync in the previous step already.
|
||
.\dev-env\windows\bin\dadew.ps1 sync
|
||
.\dev-env\windows\bin\dadew.ps1 enable
|
||
|
||
|
||
if (Test-Path -Path $env:appdata\stack\pantry\hackage\hackage-security-lock) {
|
||
Write-Output ">> Nuking stack directory"
|
||
Remove-Item -ErrorAction Continue -Force -Recurse -Path $env:appdata\stack
|
||
}
|
||
|
||
# This is currently shared between various powershell scripts.
|
||
# We should probably factor this out.
|
||
function bazel() {
|
||
Write-Output ">> bazel $args"
|
||
$global:lastexitcode = 0
|
||
$backupErrorActionPreference = $script:ErrorActionPreference
|
||
$script:ErrorActionPreference = "Continue"
|
||
& bazel.exe @args 2>&1 | %{ "$_" }
|
||
$script:ErrorActionPreference = $backupErrorActionPreference
|
||
if ($global:lastexitcode -ne 0 -And $args[0] -ne "shutdown") {
|
||
Write-Output "<< bazel $args (failed, exit code: $global:lastexitcode)"
|
||
throw ("Bazel returned non-zero exit code: $global:lastexitcode")
|
||
}
|
||
Write-Output "<< bazel $args (ok)"
|
||
}
|
||
|
||
cd compatibility
|
||
# Symlinks don’t work on Windows.
|
||
cp ../.bazelrc .bazelrc
|
||
|
||
bazel shutdown
|
||
bazel fetch @nodejs_dev_env//...
|
||
bazel build //...
|
||
bazel shutdown
|
||
|
||
bazel test "$test_args"
|