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 version caching test on Windows #17641

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
print path to try to fix runfiles issue
run-full-compat: true
  • Loading branch information
dylant-da committed Oct 25, 2023
commit fd1a85182f6f5bd92756e69dbd2cffa38266be7b
7 changes: 5 additions & 2 deletions compatibility/test-daml-version-and-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,15 @@ source "${RUNFILES_DIR:-/dev/null}/$f" 2>/dev/null || \
{ echo>&2 "ERROR: cannot find $f"; exit 1; }; f=; set -e
# --- end runfiles.bash initialization v2 ---

set -euo pipefail

# Add diff and daml to path
export PATH="$(rlocation diffutils_nix)/bin:$(rlocation daml-sdk-$1):$PATH"
ls
ls external
which daml
which diff
exit 13

set -euo pipefail

# Set daml cache
export DAML_CACHE=$(realpath local_daml_cache)
Expand Down
Loading