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 - windows
julia: julia:
- 1.0 - 1.0
- 1.3 - 1.4
- nightly - nightly
before_script: before_script:
- git config --global user.name Tester - git config --global user.name Tester

View File

@ -31,6 +31,7 @@ uuid = "82899510-4779-5014-852e-03e436cf321d"
version = "1.0.0" version = "1.0.0"
[[LibGit2]] [[LibGit2]]
deps = ["Printf"]
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433" uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
[[Libdl]] [[Libdl]]
@ -66,7 +67,7 @@ uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a"
version = "0.12.0" version = "0.12.0"
[[Pkg]] [[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" uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
[[Printf]] [[Printf]]

View File

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

View File

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

View File

@ -4,7 +4,7 @@ task:
name: FreeBSD name: FreeBSD
env: env:
JULIA_VERSION: 1.0 JULIA_VERSION: 1.0
JULIA_VERSION: 1.3 JULIA_VERSION: 1.4
JULIA_VERSION: nightly JULIA_VERSION: nightly
install_script: install_script:
- sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)" - sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"

View File

@ -1,7 +1,7 @@
def main(ctx): def main(ctx):
pipelines = [] pipelines = []
for arch in ["amd64"]: for arch in ["amd64"]:
for julia in ["1.0", "1.3"]: for julia in ["1.0", "1.4"]:
pipelines.append(pipeline(arch, julia)) pipelines.append(pipeline(arch, julia))
return pipelines return pipelines

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -34,6 +34,7 @@ uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
version = "0.21.0" version = "0.21.0"
[[LibGit2]] [[LibGit2]]
deps = ["Printf"]
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433" uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
[[Libdl]] [[Libdl]]
@ -56,7 +57,7 @@ uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
version = "0.3.10" version = "0.3.10"
[[Pkg]] [[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" uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
[[Printf]] [[Printf]]

View File

@ -49,9 +49,9 @@ mktempdir() do dir
include("git.jl") include("git.jl")
# Quite a bit of output depends on the Julia version, # 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. # 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") include("reference.jl")
else else
@info "Skipping reference tests" julia=VERSION @info "Skipping reference tests" julia=VERSION