mirror of
https://github.com/digital-asset/daml.git
synced 2024-11-05 03:56:26 +03:00
40b5eb8476
* Resolve release version for sdk build checks * lint * lint run-full-compat: true * Simple test for using daml-script in release versions * Fix build issues in tests using pSdkVersion run-full-compat: true * Fix build issues with DamlcIntegration * fix bad sdk version being an invalid version run-full-compat: true * Fix the linux "mmap 4096 bytes at (nil): Cannot allocate memory" error * Fix compat tests on Windows run-full-compat: true * test windows os correctly run-full-compat: true * temporarily disable canton_3x run-full-compat: true --------- Co-authored-by: Paul Brauner <paul.brauner@digitalasset.com>
81 lines
916 B
Plaintext
81 lines
916 B
Plaintext
# private configuration
|
|
.envrc.private
|
|
|
|
# local development
|
|
## these are sometimes defined as symlinks for local development,
|
|
## but should never be checked in because they break
|
|
## `git clone --recursive` for repos that have `daml` as a submodule.
|
|
/daml-ghcide
|
|
|
|
# Artifacts
|
|
dist
|
|
.interfaces
|
|
*.log
|
|
target
|
|
*.tgz
|
|
*.hi
|
|
*.o
|
|
|
|
# Daml
|
|
.daml/
|
|
|
|
# dev-env
|
|
/dev-env/jdk
|
|
/dev-env/var/
|
|
|
|
# Bazel
|
|
.bazel-cache
|
|
/bazel-*
|
|
!/bazel-haskell-deps.bzl
|
|
!/bazel-java-deps.bzl
|
|
/compatibility/bazel-*
|
|
!/compatibility/bazel-haskell-deps.bzl
|
|
/compatibility/head_sdk/
|
|
.bazelrc.local
|
|
.bazelproject
|
|
|
|
# node.js
|
|
node_modules/
|
|
|
|
|
|
### Operating Systems ###
|
|
|
|
# macOS
|
|
.DS_Store
|
|
._.DS_Store
|
|
|
|
|
|
### Editors ###
|
|
|
|
# Eclipse
|
|
.classpath
|
|
.factorypath
|
|
.project
|
|
.settings
|
|
|
|
# Emacs
|
|
\#*\#
|
|
.\#*\#
|
|
*~
|
|
|
|
# Ensime
|
|
.ensime
|
|
.ensime_cache
|
|
|
|
# IntelliJ IDEA
|
|
.idea
|
|
.ijwb
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
out
|
|
|
|
# Vim
|
|
*~
|
|
*.swo
|
|
*.swp
|
|
|
|
# Visual Studio Code
|
|
.vscode/*
|
|
!.vscode/settings.json.default
|