Merge pull request #271 from terop/ci_test
Fix NodeJS installation problem in CircleCI
This commit is contained in:
commit
4accfd6d2c
1 changed files with 2 additions and 4 deletions
|
|
@ -4,17 +4,15 @@ jobs:
|
||||||
working_directory: ~/honeysql
|
working_directory: ~/honeysql
|
||||||
docker:
|
docker:
|
||||||
- image: circleci/clojure:openjdk-11-tools-deps-1.10.0.442
|
- image: circleci/clojure:openjdk-11-tools-deps-1.10.0.442
|
||||||
# environment:
|
|
||||||
# JVM_OPTS: -Xmx3200m
|
|
||||||
steps:
|
steps:
|
||||||
- checkout
|
- checkout
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: honeysql-{{ checksum "deps.edn" }}
|
key: honeysql-{{ checksum "deps.edn" }}
|
||||||
- run:
|
- run:
|
||||||
name: Install Node
|
name: Install Node
|
||||||
command: sudo apt-get install -y nodejs
|
command: sudo apt-get update && sudo apt-get install -y nodejs
|
||||||
- run:
|
- run:
|
||||||
name: Add node symlink
|
name: Add Node symlink
|
||||||
command: sudo ln -s /usr/bin/js /usr/bin/node
|
command: sudo ln -s /usr/bin/js /usr/bin/node
|
||||||
- run:
|
- run:
|
||||||
name: Download Dependencies
|
name: Download Dependencies
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue