ci: delete julia/julialegacy_version-[1|1.1] tests (~10 min saved)

pull/1188/head
Erik Sundell 2022-10-09 11:21:00 +02:00
rodzic 5ffbe65bec
commit f8d0efe490
6 zmienionych plików z 0 dodań i 52 usunięć

Wyświetl plik

@ -1,5 +0,0 @@
Julia - REQUIRE: test version for julia v1.1
---------------
Starting with julia v0.7 and up, the package manager has changed, so this tests
that the julia version can be specified and packages installed correctly.

Wyświetl plik

@ -1,4 +0,0 @@
julia 1.1
# Julia packages:
Compat

Wyświetl plik

@ -1,17 +0,0 @@
#!/usr/bin/env julia
# Verify the version:
if VERSION < v"1.1" || VERSION >= v"1.2"
exit(1)
end
try
# Test that the package was installed.
using Compat
# Verify that the environment variables are set correctly for julia 1.0+
@assert "julia" ∈ readdir(Sys.BINDIR)
catch
exit(1)
end
exit(0)

Wyświetl plik

@ -1,5 +0,0 @@
Julia - REQUIRE: test version for julia v1.0
---------------
Starting with julia v0.7 and up, the package manager has changed, so this tests
that the julia version can be specified and packages installed correctly.

Wyświetl plik

@ -1,4 +0,0 @@
julia 1
# Julia packages:
Compat

Wyświetl plik

@ -1,17 +0,0 @@
#!/usr/bin/env julia
# Verify the version:
if VERSION < v"1" || VERSION >= v"2"
exit(1)
end
try
# Test that the package was installed.
using Compat
# Verify that the environment variables are set correctly for julia 1.0+
@assert "julia" ∈ readdir(Sys.BINDIR)
catch
exit(1)
end
exit(0)