-
Notifications
You must be signed in to change notification settings - Fork 119
87 lines (82 loc) · 1.77 KB
/
continuous-integration-workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Build and Test
on:
[push, pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
version:
# This must match what’s in versions.sh
- '1.9'
- '1.9.1'
- '1.9.2'
- '1.9.3'
# - '1.10' # Not hosted
- '1.10.1'
- '1.10.2'
- '1.11'
- '1.11.1'
- '1.12'
- '1.12.1'
- '2.0'
- '2.1'
- '2.1.1'
- '2.2'
- '2.2.1'
- '2.2.2'
- '2.2.3'
- '2.2.4'
- '2.3'
- '2.3.1'
- '2.3.2'
- '2.3.3'
- '2.3.4'
- '2.3.5'
- '2.3.6'
- '2.3.7'
- '2.4'
- '2.5'
# - '2.5.1' # Fibers is missing binaries
# - '2.5.2' # Fibers is missing binaries
# - '2.5.3' # Fibers is missing binaries
# - '2.5.4' # Fibers is missing binaries
# - '2.5.5' # Fibers is missing binaries
- '2.5.6'
- '2.5.7'
- '2.5.8'
- '2.6'
- '2.6.1'
- '2.7'
- '2.7.1'
- '2.7.2'
- '2.7.3'
- '2.8.0'
- '2.8.1'
- '2.9.0'
- '2.9.1'
- '2.10.0'
- '2.11.0'
- '2.12'
- '2.13'
- '2.13.1'
- '2.13.3'
- '2.14'
- '2.15'
- '2.16'
- '3.0.1'
- '3.0.2'
- '3.0.3'
- '3.0.4'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: ./build.sh
env:
CI_VERSION: ${{ matrix.version }}
- name: Test
run: ./test.sh
env:
CI_VERSION: ${{ matrix.version }}
SKIP_CLEANUP: 1