forked from disney/meteor-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontinuous-integration-workflow.yml
More file actions
73 lines (68 loc) · 1.5 KB
/
continuous-integration-workflow.yml
File metadata and controls
73 lines (68 loc) · 1.5 KB
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
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.1'
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