mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-13 00:16:19 +03:00
Do not checkout release commit in scala 2.13 (#8291)
* Do not checkout release commit in scala 2.13 At least for now, this fails because older commits don’t have the necessary infrastructure so far. At some point we probably do want to run this on release commits but that can wait a bit and this unblocks release PRs for bugfix releases. changelog_begin changelog_end * Update azure-pipelines.yml Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com> Co-authored-by: Gary Verhaegen <gary.verhaegen@digitalasset.com>
This commit is contained in:
parent
ad432592b8
commit
7d6e8f8d5c
@ -216,12 +216,6 @@ jobs:
|
||||
- job: Linux_scala_2_13
|
||||
dependsOn:
|
||||
- da_ghc_lib
|
||||
- check_for_release
|
||||
variables:
|
||||
release_sha: $[ dependencies.check_for_release.outputs['out.release_sha'] ]
|
||||
release_tag: $[ coalesce(dependencies.check_for_release.outputs['out.release_tag'], '0.0.0') ]
|
||||
trigger_sha: $[ dependencies.check_for_release.outputs['out.trigger_sha'] ]
|
||||
is_release: $[ dependencies.check_for_release.outputs['out.is_release'] ]
|
||||
timeoutInMinutes: 360
|
||||
pool:
|
||||
name: 'linux-pool'
|
||||
@ -229,11 +223,6 @@ jobs:
|
||||
steps:
|
||||
- template: ci/report-start.yml
|
||||
- checkout: self
|
||||
- bash: |
|
||||
set -euo pipefail
|
||||
git checkout $(release_sha)
|
||||
name: checkout_release
|
||||
condition: eq(variables.is_release, 'true')
|
||||
- bash: ci/dev-env-install.sh
|
||||
displayName: 'Build/Install the Developer Environment'
|
||||
- bash: |
|
||||
@ -259,8 +248,6 @@ jobs:
|
||||
# gatling-utils tests fail with a ClassNotFoundException for scala.collection.SeqLike
|
||||
bazel test --config scala_2_13 -- //libs-scala/... -//libs-scala/gatling-utils/...
|
||||
displayName: 'Build'
|
||||
env:
|
||||
DAML_SDK_RELEASE_VERSION: $(release_tag)
|
||||
- template: ci/tell-slack-failed.yml
|
||||
parameters:
|
||||
trigger_sha: '$(trigger_sha)'
|
||||
|
Loading…
Reference in New Issue
Block a user