mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-10 10:46:11 +03:00
0c90844184
* Update SDK versions in compatibility tests This adds a Haskell script to generate a versions.bzl file that contains the list of versions as well as their hashes. This should make it a bit easier to keep things up2date going forward. The script is a bit slow since downloading all the SDKs takes quite a while but for now it should be good enough and is much more pleasant than having to figure this out manually. changelog_begin changelog_end * Address review comments changelog_begin changelog_end * Fix excluded tests changelog_begin changelog_end
11 lines
279 B
Bash
Executable File
11 lines
279 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2020 Digital Asset (Switzerland) GmbH and/or its affiliates. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
cd "$(dirname "$0")"
|
|
eval "$(../dev-env/bin/dade-assist)"
|
|
|
|
bazel run //versions:update-versions -- -o $PWD/versions.bzl
|
|
|