-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash -eu | ||
|
||
# test the installation and precompilation of KiteViewers from git | ||
|
||
cd ~/repos | ||
rm -rf julia_tmp | ||
mkdir julia_tmp | ||
export JULIA_DEPOT_PATH="~/julia_tmp" | ||
export NO_MTK=true # speeds up the precompilation | ||
rm -rf viewer_test | ||
mkdir viewer_test | ||
cd viewer_test | ||
echo "Installing KiteViewers from git ..." | ||
git clone https://github.com/aenarete/KiteViewers.jl | ||
cd KiteViewers.jl | ||
cd bin | ||
./install | ||
cd .. | ||
julia --project -e "using KiteViewers; using TestEnv; TestEnv.activate(); using KiteModels" | ||
echo "KiteViewers installed successfully!" |