File tree Expand file tree Collapse file tree 1 file changed +35
-3
lines changed Expand file tree Collapse file tree 1 file changed +35
-3
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
matrix :
11
11
version :
12
- - nightly
13
12
- 5.2.5
13
+ - nightly-5.3
14
+ - nightly
14
15
container :
15
16
image : stevapple/swift-scf:${{ matrix.version }}
16
17
steps :
27
28
cd Examples/LocalDebugging/MyCloudFunction
28
29
swift build
29
30
30
- test-linux :
31
+ test-linux-release :
32
+ name : Test on Linux
33
+ runs-on : ubuntu-latest
34
+ strategy :
35
+ matrix :
36
+ os :
37
+ - bionic
38
+ - focal
39
+ - amazonlinux2
40
+ - centos8
41
+ version :
42
+ - 5.2.5
43
+ container :
44
+ image : swift:${{ matrix.version }}-${{ matrix.os }}
45
+ steps :
46
+ - name : Checkout
47
+ uses : actions/checkout@v2
48
+ - name : Test
49
+ run : swift test --enable-test-discovery
50
+ - name : Test CloudFunctions example
51
+ run : |
52
+ cd Examples/CloudFunctions
53
+ swift build
54
+ - name : Test LocalDebugging example
55
+ run : |
56
+ cd Examples/LocalDebugging/MyCloudFunction
57
+ swift build
58
+
59
+ test-linux-nightly :
31
60
name : Test on Linux
32
61
runs-on : ubuntu-latest
33
62
strategy :
37
66
- focal
38
67
- amazonlinux2
39
68
- centos8
69
+ version :
70
+ - nightly
71
+ - nightly-5.3
40
72
container :
41
- image : swift:5.2.5 -${{ matrix.os }}
73
+ image : swiftlang/ swift:${{ matrix.version }} -${{ matrix.os }}
42
74
steps :
43
75
- name : Checkout
44
76
uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments