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

Commit 95738c0

Browse files
committed
trying to fix CircleCI and the test
1 parent 694903e commit 95738c0

File tree

4 files changed

+1894
-12
lines changed

4 files changed

+1894
-12
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,26 @@ defaults: &defaults
99
- attach_workspace:
1010
at: /tmp
1111
- run:
12-
name: Install Julia v1.2.0
12+
name: Install Julia v1.5.3
1313
command: |
1414
curl -o julia.tar.gz --location --silent --show-error \
15-
https://julialang-s3.julialang.org/bin/linux/x64/1.2/julia-1.2.0-linux-x86_64.tar.gz && \
15+
https://julialang-s3.julialang.org/bin/linux/x64/1.5/julia-1.5.3-linux-x86_64.tar.gz && \
1616
mkdir julia && \
1717
tar --extract --gzip --strip 1 --directory=julia --file=julia.tar.gz && \
1818
echo 'export PATH="/tmp/project/julia/bin:$PATH"' >> $BASH_ENV
1919
- run:
2020
name: Julia version
2121
command: julia --version
2222
- run:
23-
name: Install Lint.jl
23+
name: Install StaticLint.jl
2424
# Note the "using Lint" is to pre-compile the cache
2525
# Also, we are using the `master` branch directly since a working
2626
# version isn't currently released.
2727
command: |
28-
julia -E 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/tonyhffong/Lint.jl", rev="master")); using Lint;'
28+
julia -E 'using Pkg; Pkg.add(PackageSpec(url="https://github.com/julia-vscode/StaticLint.jl", rev="master")); using StaticLint;'
2929
- run:
30-
name: Lint.jl version
31-
command: julia -E 'using Pkg; Pkg.status("Lint");'
30+
name: StaticLint.jl version
31+
command: julia -E 'using Pkg; Pkg.status("StaticLint");'
3232
- run:
3333
name: Create VFB for Atom to run in
3434
command: /usr/local/bin/xvfb_start

0 commit comments

Comments
 (0)