Run reference tests on 1.3
This commit is contained in:
parent
87a1282b95
commit
689d8d9858
@ -7,7 +7,7 @@ Strings are left in their original form.
|
||||
format_version(v::VersionNumber) = "$(v.major).$(v.minor)"
|
||||
format_version(v::AbstractString) = string(v)
|
||||
|
||||
const ALLOWED_FAILURES = ["1.3", "nightly"] # TODO: Update this list with new RCs.
|
||||
const ALLOWED_FAILURES = ["nightly"] # TODO: Update this list with new RCs.
|
||||
const DEFAULT_CI_VERSIONS = map(format_version, [default_version(), VERSION, "nightly"])
|
||||
const DEFAULT_CI_VERSIONS_NO_NIGHTLY = map(format_version, [default_version(), VERSION])
|
||||
const EXTRA_VERSIONS_DOC = "- `extra_versions::Vector`: Extra Julia versions to test, as strings or `VersionNumber`s."
|
||||
|
2
test/fixtures/AllPlugins/.appveyor.yml
vendored
2
test/fixtures/AllPlugins/.appveyor.yml
vendored
@ -2,7 +2,7 @@
|
||||
environment:
|
||||
matrix:
|
||||
- julia_version: 1.0
|
||||
- julia_version: 1.2
|
||||
- julia_version: 1.3
|
||||
- julia_version: nightly
|
||||
platform:
|
||||
- x64
|
||||
|
2
test/fixtures/AllPlugins/.cirrus.yml
vendored
2
test/fixtures/AllPlugins/.cirrus.yml
vendored
@ -4,7 +4,7 @@ task:
|
||||
name: FreeBSD
|
||||
env:
|
||||
JULIA_VERSION: 1.0
|
||||
JULIA_VERSION: 1.2
|
||||
JULIA_VERSION: 1.3
|
||||
JULIA_VERSION: nightly
|
||||
install_script:
|
||||
- sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"
|
||||
|
2
test/fixtures/AllPlugins/.drone.star
vendored
2
test/fixtures/AllPlugins/.drone.star
vendored
@ -1,7 +1,7 @@
|
||||
def main(ctx):
|
||||
pipelines = []
|
||||
for arch in ["amd64"]:
|
||||
for julia in ["1.0", "1.2"]:
|
||||
for julia in ["1.0", "1.3"]:
|
||||
pipelines.append(pipeline(arch, julia))
|
||||
return pipelines
|
||||
|
||||
|
@ -10,7 +10,7 @@ jobs:
|
||||
matrix:
|
||||
version:
|
||||
- '1.0'
|
||||
- '1.2'
|
||||
- '1.3'
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macOS-latest
|
||||
|
4
test/fixtures/AllPlugins/.gitlab-ci.yml
vendored
4
test/fixtures/AllPlugins/.gitlab-ci.yml
vendored
@ -19,7 +19,7 @@ Julia 1.0:
|
||||
image: julia:1.0
|
||||
<<: *script
|
||||
<<: *coverage
|
||||
Julia 1.2:
|
||||
image: julia:1.2
|
||||
Julia 1.3:
|
||||
image: julia:1.3
|
||||
<<: *script
|
||||
<<: *coverage
|
||||
|
2
test/fixtures/AllPlugins/.travis.yml
vendored
2
test/fixtures/AllPlugins/.travis.yml
vendored
@ -4,7 +4,7 @@ notifications:
|
||||
email: false
|
||||
julia:
|
||||
- 1.0
|
||||
- 1.2
|
||||
- 1.3
|
||||
- nightly
|
||||
os:
|
||||
- linux
|
||||
|
@ -10,7 +10,7 @@ jobs:
|
||||
matrix:
|
||||
version:
|
||||
- '1.0'
|
||||
- '1.2'
|
||||
- '1.3'
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macOS-latest
|
||||
|
2
test/fixtures/DocumenterTravis/.travis.yml
vendored
2
test/fixtures/DocumenterTravis/.travis.yml
vendored
@ -4,7 +4,7 @@ notifications:
|
||||
email: false
|
||||
julia:
|
||||
- 1.0
|
||||
- 1.2
|
||||
- 1.3
|
||||
- nightly
|
||||
os:
|
||||
- linux
|
||||
|
5
test/fixtures/WackyOptions/.appveyor.yml
vendored
5
test/fixtures/WackyOptions/.appveyor.yml
vendored
@ -1,14 +1,11 @@
|
||||
# Documentation: https://github.com/JuliaCI/Appveyor.jl
|
||||
environment:
|
||||
matrix:
|
||||
- julia_version: 1.1
|
||||
- julia_version: 1.2
|
||||
- julia_version: 1.3
|
||||
platform:
|
||||
- x64
|
||||
- x86
|
||||
matrix:
|
||||
allow_failures:
|
||||
- julia_version: 1.3
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
|
@ -11,6 +11,7 @@ jobs:
|
||||
version:
|
||||
- '1.0'
|
||||
- '1.2'
|
||||
- '1.3'
|
||||
os:
|
||||
- macOS-latest
|
||||
- windows-latest
|
||||
|
@ -48,9 +48,9 @@ mktempdir() do dir
|
||||
include("git.jl")
|
||||
|
||||
# Quite a bit of output depends on the Julia version,
|
||||
# and the test fixtures are made with Julia 1.2.
|
||||
# and the test fixtures are made with Julia 1.3.
|
||||
# TODO: Keep this on the latest stable Julia version.
|
||||
if VERSION.major == 1 && VERSION.minor == 2
|
||||
if VERSION.major == 1 && VERSION.minor == 3
|
||||
include("reference.jl")
|
||||
else
|
||||
@info "Skipping reference tests" julia=VERSION
|
||||
|
Loading…
Reference in New Issue
Block a user