Run reference tests on 1.3

This commit is contained in:
Chris de Graaf 2019-12-17 09:11:51 +07:00
parent 87a1282b95
commit 689d8d9858
No known key found for this signature in database
GPG Key ID: 150FFDD9B0073C7B
12 changed files with 14 additions and 16 deletions

View File

@ -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."

View File

@ -2,7 +2,7 @@
environment:
matrix:
- julia_version: 1.0
- julia_version: 1.2
- julia_version: 1.3
- julia_version: nightly
platform:
- x64

View File

@ -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 -)"

View File

@ -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

View File

@ -10,7 +10,7 @@ jobs:
matrix:
version:
- '1.0'
- '1.2'
- '1.3'
os:
- ubuntu-latest
- macOS-latest

View File

@ -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

View File

@ -4,7 +4,7 @@ notifications:
email: false
julia:
- 1.0
- 1.2
- 1.3
- nightly
os:
- linux

View File

@ -10,7 +10,7 @@ jobs:
matrix:
version:
- '1.0'
- '1.2'
- '1.3'
os:
- ubuntu-latest
- macOS-latest

View File

@ -4,7 +4,7 @@ notifications:
email: false
julia:
- 1.0
- 1.2
- 1.3
- nightly
os:
- linux

View File

@ -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

View File

@ -11,6 +11,7 @@ jobs:
version:
- '1.0'
- '1.2'
- '1.3'
os:
- macOS-latest
- windows-latest

View File

@ -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