Skip to content
This repository was archived by the owner on Mar 26, 2021. It is now read-only.

Commit b8a84ba

Browse files
authored
Test 32-bit and 64-bit on Linux and Windows (#13)
1 parent 9f14fd3 commit b8a84ba

File tree

1 file changed

+64
-12
lines changed

1 file changed

+64
-12
lines changed

.travis.yml

Lines changed: 64 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# arch:
2+
# - x86
3+
# - x64
4+
# - arm64
5+
16
branches:
27
only:
38
- master
@@ -6,21 +11,68 @@ branches:
611
- /^release\/.*$/ # release branches
712
- /^v[0-9]+\.[0-9]+\.[0-9]+$/ # version tags
813

9-
language: julia
10-
11-
os:
12-
- linux
13-
- osx
14-
- windows
15-
16-
julia:
17-
- "1.3"
18-
- nightly
19-
20-
matrix:
14+
jobs:
2115
allow_failures:
2216
- julia: nightly
2317
fast_finish: true
18+
include:
19+
- os: linux
20+
arch: x64
21+
julia: "1.3"
22+
name: "Linux 1.3 64-bit"
23+
- os: linux
24+
arch: x64
25+
julia: nightly
26+
name: "Linux nightly 64-bit"
27+
- os: linux
28+
arch: x86
29+
julia: "1.3"
30+
name: "Linux 1.3 32-bit"
31+
- os: linux
32+
arch: x86
33+
julia: nightly
34+
name: "Linux nightly 32-bit"
35+
- os: linux
36+
arch: arm64
37+
julia: "1.3"
38+
name: "Linux 1.3 AArch64"
39+
- os: linux
40+
arch: arm64
41+
julia: nightly
42+
name: "Linux nightly AArch64"
43+
- os: osx
44+
julia: "1.3"
45+
name: "macOS 1.3"
46+
- os: osx
47+
julia: nightly
48+
name: "macOS nightly"
49+
- os: windows
50+
arch: x64
51+
julia: "1.3"
52+
name: "Win 1.3 64-bit"
53+
- os: windows
54+
arch: x64
55+
julia: nightly
56+
name: "Win nightly 64-bit"
57+
- os: windows
58+
arch: x86
59+
julia: "1.3"
60+
name: "Win 1.3 32-bit"
61+
- os: windows
62+
arch: x86
63+
julia: nightly
64+
name: "Win nightly 32-bit"
65+
66+
# julia:
67+
# - "1.3"
68+
# - nightly
69+
70+
language: julia
71+
72+
# os:
73+
# - linux
74+
# - osx
75+
# - windows
2476

2577
notifications:
2678
email: false

0 commit comments

Comments
 (0)