Skip to content
This repository has been archived by the owner on Nov 24, 2020. It is now read-only.

Commit

Permalink
Compare 0.6.1 backports against 0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Oct 2, 2017
1 parent f939082 commit 5ba6a3b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions scripts/setup.sh
Expand Up @@ -50,12 +50,12 @@ echo "verbose = off" >> ~/.wgetrc
sudo apt-get update # Pull in latest versions
sudo apt-get upgrade # Upgrade system packages
# Use first argument to script to distinguish between the versions
if [ "$1" == "0.7" ]
if [ "$2" == "LZ" ]
then
# Nightly
wget -O julia.tar.gz https://julialangnightlies-s3.julialang.org/bin/linux/x64/julia-latest-linux64.tar.gz
# backport
wget -O julia.tar.gz https://s3.amazonaws.com/julialangnightlies/buildog/bin/linux/x64/0.6/julia-9b348ff635-linux64.tar.gz
else
wget -O julia.tar.gz https://julialang-s3.julialang.org/bin/linux/x64/${1}/julia-${1}-latest-linux-x86_64.tar.gz
wget -O julia.tar.gz https://julialang-s3.julialang.org/bin/linux/x64/0.6/julia-0.6-latest-linux-x86_64.tar.gz
fi
mkdir julia
tar -zxf julia.tar.gz -C ./julia --strip-components=1
Expand Down Expand Up @@ -135,15 +135,15 @@ julia -e "Pkg.init(); println(Pkg.dir())"

#######################################################################
# Run PackageEvaluator
if [ "$2" == "all" ]
if [ "$1" == "0.4" ]
then
LOOPOVER=/home/vagrant/.julia/v${1}/METADATA/*
elif [ "$2" == "AK" ]
LOOPOVER=/home/vagrant/.julia/v0.6/METADATA/[A-F,a-f]*
elif [ "$1" == "0.5" ]
then
LOOPOVER=/home/vagrant/.julia/v${1}/METADATA/[A-K,a-k]*;
elif [ "$2" == "LZ" ]
LOOPOVER=/home/vagrant/.julia/v0.6/METADATA/[G-N,g-n]*;
elif [ "$1" == "0.6" ]
then
LOOPOVER=/home/vagrant/.julia/v${1}/METADATA/[L-Z,l-z]*;
LOOPOVER=/home/vagrant/.julia/v0.6/METADATA/[O-Z,o-z]*;
fi
# For every package name...
for f in $LOOPOVER;
Expand Down
2 changes: 1 addition & 1 deletion src/preptest.jl
Expand Up @@ -38,7 +38,7 @@ function prepare_test()
if get(PKGOPTS, pkg_name, :NORMAL) == :XVFB
print(fp, "xvfb-run ")
end
print(fp, "$TIMEOUTPATH -s 9 900s ")
print(fp, "$TIMEOUTPATH -s 9 2400s ")
print(fp, "julia -e 'versioninfo(true); Pkg.test(\"", pkg_name, "\")'")
print(fp, " 2>&1 | tee PKGEVAL_", pkg_name, "_test.log")
close(fp)
Expand Down

0 comments on commit 5ba6a3b

Please sign in to comment.