mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-08 21:34:22 +03:00
d2e2c21684
New year, new copyright, new expected unknown issues with various files that won't be covered by the script and/or will be but shouldn't change. I'll do the details on Jan 1, but would appreciate this being preapproved so I can actually get it merged by then. CHANGELOG_BEGIN CHANGELOG_END
74 lines
2.6 KiB
YAML
74 lines
2.6 KiB
YAML
# Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
parameters:
|
|
release_tag: ''
|
|
is_release: ''
|
|
skip_tests: ''
|
|
|
|
steps:
|
|
- bash: ci/configure-bazel.sh
|
|
displayName: 'Configure Bazel'
|
|
env:
|
|
IS_FORK: $(System.PullRequest.IsFork)
|
|
# to upload to the bazel cache
|
|
GOOGLE_APPLICATION_CREDENTIALS_CONTENT: $(GOOGLE_APPLICATION_CREDENTIALS_CONTENT)
|
|
|
|
- powershell: '.\ci\windows-diagnostics.ps1'
|
|
displayName: 'Agent diagnostics'
|
|
|
|
- powershell: '.\build.ps1'
|
|
displayName: 'Build'
|
|
env:
|
|
DAML_SDK_RELEASE_VERSION: ${{parameters.release_tag}}
|
|
# On release, we want to skip testing because:
|
|
# - Caching on Windows is keyed on full path, and full path is somewhat
|
|
# random (for a given machine, each pipeline has a its own workdir, but
|
|
# they are not the same across machines).
|
|
# - In the specific case of a release commit on `main`, the exact same
|
|
# code has already been tested twice: once as part of the target
|
|
# commit's own build (albeit with 0.0.0 as version number), and once as
|
|
# part of the release PR that triggered the build (with correct version
|
|
# number).
|
|
SKIP_TESTS: ${{parameters.skip_tests}}
|
|
|
|
- template: publish-platform-independence-dar.yml
|
|
parameters:
|
|
platform: 'windows'
|
|
is_release: '${{parameters.is_release}}'
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
condition: failed()
|
|
displayName: 'Publish the bazel test logs'
|
|
inputs:
|
|
pathtoPublish: 'bazel-testlogs/'
|
|
artifactName: 'Test logs Windows'
|
|
|
|
- template: bash-lib.yml
|
|
parameters:
|
|
var_name: bash-lib
|
|
|
|
- bash: |
|
|
set -euo pipefail
|
|
mkdir -p '$(Build.StagingDirectory)'/release
|
|
./ci/copy-windows-release-artifacts.sh ${{parameters.release_tag}} '$(Build.StagingDirectory)'/release
|
|
name: publish
|
|
env:
|
|
AZURE_KEY_VAULT_URL: $(AZURE_KEY_VAULT_URL)
|
|
AZURE_CLIENT_ID: $(AZURE_CLIENT_ID)
|
|
AZURE_CLIENT_SECRET: $(AZURE_CLIENT_SECRET)
|
|
AZURE_TENANT_ID: $(AZURE_TENANT_ID)
|
|
AZURE_KEY_VAULT_CERTIFICATE: $(AZURE_KEY_VAULT_CERTIFICATE)
|
|
DAML_SDK_RELEASE_VERSION: ${{parameters.release_tag}}
|
|
condition: and(succeeded(),
|
|
eq(${{parameters.is_release}}, 'true'),
|
|
eq(variables['Build.SourceBranchName'], 'main'))
|
|
|
|
- task: PublishPipelineArtifact@0
|
|
condition: and(succeeded(),
|
|
eq(${{parameters.is_release}}, 'true'),
|
|
eq(variables['Build.SourceBranchName'], 'main'))
|
|
inputs:
|
|
targetPath: $(Build.StagingDirectory)/release
|
|
artifactName: windows-release
|