forked from digital-asset/daml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build SDK head tarball directly (digital-asset#3723)
Previously, we constructed the tarball used by daml-sdk-head by first building the regular SDK release tarball only to the extract it, patch the version file and recompress it. This adds about 30-60s to every invocation of daml-sdk-head. This PR changes this by factoring out the logic from building the release tarball into a macro that we instantiate twice, once with the proper version file and once with a dummy HEAD version file set to 0.0.0. This does change the format of the sdk-head-tarball slightly, in particular the files are now located under sdk-0.0.0 instead of sdk-head. However, this doesn’t matter anyway afaik and I think the new format makes more sense anyway considering that the regular release tarballs have something like sdk-0.13.38.
- Loading branch information
1 parent
50d689d
commit 08b9860
Showing
3 changed files
with
68 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Copyright (c) 2019 The DAML Authors. All rights reserved. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
def sdk_tarball(name, version): | ||
native.genrule( | ||
name = name, | ||
srcs = [ | ||
":sdk-config.yaml.tmpl", | ||
":install.sh", | ||
":install.bat", | ||
"//ledger-service/http-json:release/json-api-logback.xml", | ||
"//:NOTICES", | ||
version, | ||
"//daml-assistant:daml-dist", | ||
"//compiler/damlc:damlc-dist", | ||
"//compiler/daml-extension:vsix", | ||
"//daml-assistant/daml-helper:daml-helper-dist", | ||
"//templates:templates-tarball.tar.gz", | ||
"//triggers/daml:daml-trigger.dar", | ||
"//daml-script/daml:daml-script.dar", | ||
"//daml-assistant/daml-sdk:sdk_deploy.jar", | ||
], | ||
outs = ["{}.tar.gz".format(name)], | ||
cmd = """ | ||
# damlc | ||
VERSION=$$(cat $(location {version})) | ||
OUT=sdk-$$VERSION | ||
mkdir -p $$OUT | ||
cp $(location //:NOTICES) $$OUT/NOTICES | ||
cp $(location :install.sh) $$OUT/install.sh | ||
cp $(location :install.bat) $$OUT/install.bat | ||
cp $(location :sdk-config.yaml.tmpl) $$OUT/sdk-config.yaml | ||
sed -i "s/__VERSION__/$$VERSION/" $$OUT/sdk-config.yaml | ||
mkdir -p $$OUT/daml | ||
tar xf $(location //daml-assistant:daml-dist) --strip-components=1 -C $$OUT/daml | ||
mkdir -p $$OUT/damlc | ||
tar xf $(location //compiler/damlc:damlc-dist) --strip-components=1 -C $$OUT/damlc | ||
mkdir -p $$OUT/daml-libs | ||
cp -t $$OUT/daml-libs $(location //triggers/daml:daml-trigger.dar) | ||
cp -t $$OUT/daml-libs $(location //daml-script/daml:daml-script.dar) | ||
mkdir -p $$OUT/daml-helper | ||
tar xf $(location //daml-assistant/daml-helper:daml-helper-dist) --strip-components=1 -C $$OUT/daml-helper | ||
mkdir -p $$OUT/studio | ||
cp $(location //compiler/daml-extension:vsix) $$OUT/studio/daml-bundled.vsix | ||
mkdir -p $$OUT/templates | ||
tar xf $(location //templates:templates-tarball.tar.gz) --strip-components=1 -C $$OUT/templates | ||
mkdir -p $$OUT/daml-sdk | ||
cp $(location //daml-assistant/daml-sdk:sdk_deploy.jar) $$OUT/daml-sdk/daml-sdk.jar | ||
cp -L $(location //ledger-service/http-json:release/json-api-logback.xml) $$OUT/daml-sdk/ | ||
tar zcf $@ --format=ustar $$OUT | ||
""".format(version = version), | ||
visibility = ["//visibility:public"], | ||
) |