repo2docker/tests/julia/julia_version-default/verify

21 wiersze
347 B
Julia
Executable File

#!/usr/bin/env julia
# Verify the version:
if VERSION < v"1.1.0"
exit(1)
end
using Pkg
pkg"activate ."
try
# Test that the package was installed.
using IteratorInterfaceExtensions
# Verify that the environment variables are set correctly for julia 1.0+
@assert "julia" readdir(Sys.BINDIR)
catch
exit(1)
end
exit(0)