Skip to content
This repository was archived by the owner on Aug 7, 2023. It is now read-only.

Commit c97c62d

Browse files
committed
ci(circle): pre-install Lint.jl
This should automatically install for live environments, however it is too slow to re-initialize for each spec.
1 parent b144784 commit c97c62d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,16 @@ defaults: &defaults
1616
mkdir julia && \
1717
tar --extract --gzip --strip 1 --directory=julia --file=julia.tar.gz && \
1818
echo 'export PATH="/home/atom/julia/bin:$PATH"' >> $BASH_ENV
19+
- run:
20+
name: Julia version
21+
command: julia --version
22+
- run:
23+
name: Install Lint.jl
24+
# Note the "using Lint" is to pre-compile the cache
25+
command: julia -E 'Pkg.add("Lint"); using Lint;'
26+
- run:
27+
name: Lint.jl version
28+
command: julia -E 'Pkg.installed("Lint")'
1929
- run:
2030
name: Create VFB for Atom to run in
2131
command: /usr/local/bin/xvfb_start

0 commit comments

Comments
 (0)