Skip to content

Commit 61f9058

Browse files
giordanoararslan
authored andcommitted
Run CI tests with Julia 1.2 and 1.3 (#184)
Enable tests with armv7l now that it works with Julia 1.3
1 parent 5e46f16 commit 61f9058

File tree

5 files changed

+43
-10
lines changed

5 files changed

+43
-10
lines changed

.cirrus.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@ task:
99
- JULIA_SPECIALFUNCTIONS_BUILD_SOURCE: "true"
1010
JULIA_VERSION: 1.0
1111
- JULIA_SPECIALFUNCTIONS_BUILD_SOURCE: "false"
12-
JULIA_VERSION: 1.1
12+
JULIA_VERSION: 1.2
1313
- JULIA_SPECIALFUNCTIONS_BUILD_SOURCE: "true"
14-
JULIA_VERSION: 1.1
14+
JULIA_VERSION: 1.2
15+
- JULIA_SPECIALFUNCTIONS_BUILD_SOURCE: "false"
16+
JULIA_VERSION: 1.3
17+
- JULIA_SPECIALFUNCTIONS_BUILD_SOURCE: "true"
18+
JULIA_VERSION: 1.3
1519
- JULIA_SPECIALFUNCTIONS_BUILD_SOURCE: "false"
1620
JULIA_VERSION: nightly
1721
- JULIA_SPECIALFUNCTIONS_BUILD_SOURCE: "true"

.drone.jsonnet

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ local Pipeline(os, arch, version) = {
1717
};
1818

1919
[
20-
# Pipeline("linux", "arm", "1.0"),
21-
# Pipeline("linux", "arm", "1.1"),
20+
Pipeline("linux", "arm", "1.3"),
2221
Pipeline("linux", "arm64", "1.0"),
23-
Pipeline("linux", "arm64", "1.1")
22+
Pipeline("linux", "arm64", "1.2"),
23+
Pipeline("linux", "arm64", "1.3")
2424
]

.drone.yml

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
---
2+
kind: pipeline
3+
name: linux - arm - Julia 1.3
4+
5+
platform:
6+
os: linux
7+
arch: arm
8+
9+
steps:
10+
- name: build
11+
image: julia:1.3
12+
commands:
13+
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
14+
115
---
216
kind: pipeline
317
name: linux - arm64 - Julia 1.0
@@ -14,15 +28,29 @@ steps:
1428

1529
---
1630
kind: pipeline
17-
name: linux - arm64 - Julia 1.1
31+
name: linux - arm64 - Julia 1.2
32+
33+
platform:
34+
os: linux
35+
arch: arm64
36+
37+
steps:
38+
- name: build
39+
image: julia:1.2
40+
commands:
41+
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
42+
43+
---
44+
kind: pipeline
45+
name: linux - arm64 - Julia 1.3
1846

1947
platform:
2048
os: linux
2149
arch: arm64
2250

2351
steps:
2452
- name: build
25-
image: julia:1.1
53+
image: julia:1.3
2654
commands:
2755
- "julia --project=. --check-bounds=yes --color=yes -e 'using InteractiveUtils; versioninfo(verbose=true); using Pkg; Pkg.build(); Pkg.test(coverage=true)'"
2856

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ before_install:
1313
julia:
1414
- 0.7
1515
- 1.0
16-
- 1.1
16+
- 1.2
17+
- 1.3
1718
- nightly
1819
env:
1920
matrix:
@@ -40,4 +41,3 @@ jobs:
4041
Pkg.build();'
4142
- julia --project=docs/ docs/make.jl
4243
after_success: skip
43-

appveyor.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ environment:
22
matrix:
33
- julia_version: 0.7
44
- julia_version: 1.0
5-
- julia_version: 1.1
5+
- julia_version: 1.2
6+
- julia_version: 1.3
67
- julia_version: latest
78

89
platform:

0 commit comments

Comments
 (0)