Skip to content

Commit

Permalink
atdd: install ldc manually instead of through apt, to get latest stab…
Browse files Browse the repository at this point in the history
…le version
  • Loading branch information
elrandar committed Sep 13, 2023
1 parent 3d46a43 commit 16eabee
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ commands:
command: opam exec -- make
- run:
name: Test
command: opam exec -- make test
command: source ~/.bashrc && opam exec -- make test

jobs:
build_latest_ocaml:
Expand Down
7 changes: 5 additions & 2 deletions .circleci/setup-system
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ sudo apt-get install -y \
python3 \
python3-pip \
python-is-python3 \
scala \
ldc
scala

# For JSON Schema and atdpy testing
pip install jsonschema pytest mypy flake8

# To get latest ldc version
source $(curl https://dlang.org/install.sh | bash -s ldc -a)
BASH_ENV=~/.bashrc

###### Sanity checks ######

echo 'check opam'
Expand Down

0 comments on commit 16eabee

Please sign in to comment.