Updates for Julia 1.4

This commit is contained in:
Chris de Graaf 2020-03-23 09:26:24 -05:00
parent 1976070a50
commit 0a0a4731a3
No known key found for this signature in database
GPG Key ID: 150FFDD9B0073C7B
14 changed files with 21 additions and 18 deletions

View File

@ -7,7 +7,7 @@ os:
- windows
julia:
- 1.0
- 1.3
- 1.4
- nightly
before_script:
- git config --global user.name Tester

View File

@ -31,6 +31,7 @@ uuid = "82899510-4779-5014-852e-03e436cf321d"
version = "1.0.0"
[[LibGit2]]
deps = ["Printf"]
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
[[Libdl]]
@ -66,7 +67,7 @@ uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a"
version = "0.12.0"
[[Pkg]]
deps = ["Dates", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Test", "UUIDs"]
deps = ["Dates", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
[[Printf]]

View File

@ -29,9 +29,9 @@ version = "0.8.1"
[[Documenter]]
deps = ["Base64", "Dates", "DocStringExtensions", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
git-tree-sha1 = "d497bcc45bb98a1fbe19445a774cfafeabc6c6df"
git-tree-sha1 = "646ebc3db49889ffeb4c36f89e5d82c6a26295ff"
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
version = "0.24.5"
version = "0.24.7"
[[InteractiveUtils]]
deps = ["Markdown"]
@ -49,6 +49,7 @@ uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
version = "0.21.0"
[[LibGit2]]
deps = ["Printf"]
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
[[Libdl]]
@ -93,7 +94,7 @@ uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
version = "0.3.12"
[[Pkg]]
deps = ["Dates", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Test", "UUIDs"]
deps = ["Dates", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
[[PkgTemplates]]

View File

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

View File

@ -4,7 +4,7 @@ task:
name: FreeBSD
env:
JULIA_VERSION: 1.0
JULIA_VERSION: 1.3
JULIA_VERSION: 1.4
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.3"]:
for julia in ["1.0", "1.4"]:
pipelines.append(pipeline(arch, julia))
return pipelines

View File

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

View File

@ -21,8 +21,8 @@ Julia 1.0:
extends:
- .script
- .coverage
Julia 1.3:
image: julia:1.3
Julia 1.4:
image: julia:1.4
extends:
- .script
- .coverage

View File

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

View File

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

View File

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

View File

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

View File

@ -34,6 +34,7 @@ uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
version = "0.21.0"
[[LibGit2]]
deps = ["Printf"]
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
[[Libdl]]
@ -56,7 +57,7 @@ uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
version = "0.3.10"
[[Pkg]]
deps = ["Dates", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Test", "UUIDs"]
deps = ["Dates", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
[[Printf]]

View File

@ -49,9 +49,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.3.
# and the test fixtures are made with Julia 1.4.
# TODO: Keep this on the latest stable Julia version.
if VERSION.major == 1 && VERSION.minor == 3
if VERSION.major == 1 && VERSION.minor == 4
include("reference.jl")
else
@info "Skipping reference tests" julia=VERSION