mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-05 03:56:26 +03:00
18b681f521
* Add Oracle compatibility tests changelog_begin changelog_end * Clean up * Remove debug change * Skip Oracle tests if there is nothing to do * Add missing line warp * Use ORACLE_PORT Co-authored-by: mziolekda <marcin.ziolek@digitalasset.com> Co-authored-by: mziolekda <marcin.ziolek@digitalasset.com>
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
# Copyright (c) 2022 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
parameters:
|
|
- name: test_flags
|
|
type: string
|
|
default: ''
|
|
|
|
steps:
|
|
- bash: ci/dev-env-install.sh
|
|
displayName: 'Build/Install the Developer Environment'
|
|
- bash: ci/configure-bazel.sh
|
|
displayName: 'Configure Bazel for root workspace'
|
|
env:
|
|
IS_FORK: $(System.PullRequest.IsFork)
|
|
# to upload to the bazel cache
|
|
GOOGLE_APPLICATION_CREDENTIALS_CONTENT: $(GOOGLE_APPLICATION_CREDENTIALS_CONTENT)
|
|
- bash: ci/configure-bazel.sh
|
|
displayName: 'Configure Bazel for compatibility workspace'
|
|
env:
|
|
BAZEL_CONFIG_DIR: compatibility
|
|
IS_FORK: $(System.PullRequest.IsFork)
|
|
# to upload to the bazel cache
|
|
GOOGLE_APPLICATION_CREDENTIALS_CONTENT: $(GOOGLE_APPLICATION_CREDENTIALS_CONTENT)
|
|
- task: DownloadPipelineArtifact@0
|
|
inputs:
|
|
artifactName: 'typescript-libs'
|
|
targetPath: $(Build.SourcesDirectory)/compatibility/head_sdk
|
|
- bash: |
|
|
set -euo pipefail
|
|
./compatibility/build-release-artifacts.sh
|
|
displayName: 'Build release artifacts'
|
|
- bash: |
|
|
set -eou pipefail
|
|
./compatibility/test.sh ${{ parameters.test_flags }}
|
|
displayName: 'Run tests'
|
|
env:
|
|
DOCKER_LOGIN: $(DOCKER_LOGIN)
|
|
DOCKER_PASSWORD: $(DOCKER_PASSWORD)
|