daml/release/sdk-config.yaml.tmpl
Andreas Herrmann 1a80106753
damlc test --files (#1409)
* Add test case for damlc test-files

* Separate damlc test-files from damlc test

* Fix rules_daml/daml.bzl daml_test

* damlc test-files --> damlc test --files

The project options are still relevant for the --files case, as it may
be necessary to change into the project root directory in order to
locate the project package database.
2019-05-28 15:36:42 +02:00

49 lines
1.3 KiB
Cheetah

version: __VERSION__
commands:
- name: studio
path: daml-helper/daml-helper
desc: "Launch DAML Studio"
args: ["studio"]
- name: new
path: daml-helper/daml-helper
desc: "Create a new DAML project"
args: ["new"]
- name: init
path: daml-helper/daml-helper
desc: "Configure a folder as a DAML project"
args: ["init"]
- name: build
path: damlc/da-hs-damlc-app
args: ["build", "--project-check"]
desc: "Build the current DAML project into a DAR file"
- name: test
path: damlc/da-hs-damlc-app
args: ["test"]
desc: "Run the scenarios in the given DAML file and all dependencies"
- name: start
path: daml-helper/daml-helper
args: ["start"]
desc: "Launch Sandbox and Navigator for current DAML project"
- name: clean
path: damlc/da-hs-damlc-app
args: ["clean", "--project-check"]
desc: "Delete build artifacts from project folder"
- name: damlc
path: damlc/da-hs-damlc-app
desc: "Run the DAML compiler"
- name: sandbox
path: daml-helper/daml-helper
desc: "Launch the Sandbox"
args: ["run-jar", "sandbox/sandbox.jar"]
- name: navigator
path: daml-helper/daml-helper
desc: "Launch the Navigator"
args: ["run-jar", "navigator/navigator.jar"]
- name: extractor
path: daml-helper/daml-helper
desc: "Launch the Extractor"
args: ["run-jar", "extractor/extractor.jar"]
- name: ide
path: damlc/da-hs-damlc-app
args: ["lax", "ide"]