Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix concurrent DAML compilations on Windows #679

Merged
merged 1 commit into from
Apr 24, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions daml-foundations/daml-ghc/package-database/util.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -77,14 +77,17 @@ def _daml_package_rule_impl(ctx):
progress_message = "Compiling " + name + ".daml to daml-lf " + ctx.attr.daml_lf_version,
command = """
set -eou pipefail
mkdir -p tmp_db
tar xf {db_tar} -C tmp_db --strip-components 1
mkdir -p tmp_db/{daml_lf_version}
# Since we don't have sandboxing on Windows, that directory might
# exist from a previous build.
rm -rf {package_db_name}
mkdir -p {package_db_name}
tar xf {db_tar} -C {package_db_name} --strip-components 1
mkdir -p {package_db_name}/{daml_lf_version}

# Compile the dalf file
{damlc_bootstrap} compile \
--package-name {pkg_name} \
--package-db tmp_db \
--package-db {package_db_name} \
--write-iface \
--target {daml_lf_version} \
-o {dalf_file} \
Expand All @@ -94,6 +97,7 @@ def _daml_package_rule_impl(ctx):
""".format(
main = modules[ctx.attr.main],
name = name,
package_db_name = "package_db_for_" + name,
damlc_bootstrap = ctx.executable.damlc_bootstrap.path,
dalf_file = ctx.outputs.dalf.path,
daml_lf_version = ctx.attr.daml_lf_version,
Expand Down