Skip to content

Commit

Permalink
Fix Julia install
Browse files Browse the repository at this point in the history
  • Loading branch information
eatonphil committed Apr 2, 2023
1 parent 33324c2 commit cd6e888
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions scripts/ci/prepare_linux_integration_test_setup_only.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

set -ex

# Set up Julia, SSH, etc.
sudo apt-get install -y jq julia openssh-server php
# Set up SSH, etc.
sudo apt-get install -y jq openssh-server php

# Set up http helper
go install github.com/multiprocessio/httpmirror@latest
Expand All @@ -34,6 +34,11 @@ sudo mv deno /usr/bin/deno
sudo mkdir -p /usr/local/lib/R/site-library
sudo chown -R $USER /usr/local/lib/R/

# Install julia
wget https://julialang-s3.julialang.org/bin/linux/x64/1.8/julia-1.8.5-linux-x86_64.tar.gz
tar zxvf julia-1.8.5-linux-x86_64.tar.gz
sudo ln -s $(pwd)/julia-1.8.5/bin /usr/local/bin/

# Install jsonnet
go install github.com/google/go-jsonnet/cmd/jsonnet@latest

Expand Down

0 comments on commit cd6e888

Please sign in to comment.