Skip to content

Commit

Permalink
update test_dev script
Browse files Browse the repository at this point in the history
  • Loading branch information
ufechner7 committed Nov 18, 2024
1 parent 989647e commit 1cf1169
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions test/test_dev
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!"

0 comments on commit 1cf1169

Please sign in to comment.