File tree Expand file tree Collapse file tree 4 files changed +106
-20
lines changed Expand file tree Collapse file tree 4 files changed +106
-20
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
12
+ checkout :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ -
16
+ name : Checkout
17
+ uses : actions/checkout@v2
18
+ -
19
+ name : Upload checkout
20
+ uses : actions/upload-artifact@v1
21
+ with :
22
+ name : checkout
23
+ path : .
24
+
12
25
build :
13
26
strategy :
14
27
matrix :
@@ -17,12 +30,16 @@ jobs:
17
30
" 2.7" ,
18
31
]
19
32
max-parallel : 1
33
+ needs : checkout
20
34
runs-on : ubuntu-latest
21
35
container : " pylegacy/python:${{ matrix.python-version }}-debian-4"
22
36
steps :
23
37
-
24
- name : Checkout
25
- uses : actions/checkout@v1
38
+ name : Download checkout
39
+ uses : actions/download-artifact@v1
40
+ with :
41
+ name : checkout
42
+ path : .
26
43
-
27
44
name : Build wheel
28
45
run : |
58
75
container : " pylegacy/python:${{ matrix.python-version }}-debian-5"
59
76
steps :
60
77
-
61
- name : Checkout
62
- uses : actions/checkout@v1
78
+ name : Download checkout
79
+ uses : actions/download-artifact@v1
80
+ with :
81
+ name : checkout
82
+ path : .
63
83
-
64
84
name : Download build artifacts
65
85
uses : actions/download-artifact@v1
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
12
+ checkout :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ -
16
+ name : Checkout
17
+ uses : actions/checkout@v2
18
+ -
19
+ name : Upload checkout
20
+ uses : actions/upload-artifact@v1
21
+ with :
22
+ name : checkout
23
+ path : .
24
+
12
25
build :
13
26
strategy :
14
27
matrix :
@@ -17,12 +30,16 @@ jobs:
17
30
" 2.7" ,
18
31
]
19
32
max-parallel : 1
33
+ needs : checkout
20
34
runs-on : ubuntu-latest
21
35
container : " pylegacy/python:${{ matrix.python-version }}-debian-4"
22
36
steps :
23
37
-
24
- name : Checkout
25
- uses : actions/checkout@v1
38
+ name : Download checkout
39
+ uses : actions/download-artifact@v1
40
+ with :
41
+ name : checkout
42
+ path : .
26
43
-
27
44
name : Build wheel
28
45
run : |
58
75
container : " pylegacy/python:${{ matrix.python-version }}-debian-5"
59
76
steps :
60
77
-
61
- name : Checkout
62
- uses : actions/checkout@v1
78
+ name : Download checkout
79
+ uses : actions/download-artifact@v1
80
+ with :
81
+ name : checkout
82
+ path : .
63
83
-
64
84
name : Download build artifacts
65
85
uses : actions/download-artifact@v1
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
12
+ checkout :
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ -
16
+ name : Checkout
17
+ uses : actions/checkout@v2
18
+ -
19
+ name : Upload checkout
20
+ uses : actions/upload-artifact@v1
21
+ with :
22
+ name : checkout
23
+ path : .
24
+
12
25
build-geos :
13
26
strategy :
14
27
matrix :
@@ -19,12 +32,16 @@ jobs:
19
32
]
20
33
max-parallel : 2
21
34
fail-fast : false
35
+ needs : checkout
22
36
runs-on : ubuntu-latest
23
37
container : " pylegacy/${{ matrix.arch }}-python:3.6-debian-4"
24
38
steps :
25
39
-
26
- name : Checkout
27
- uses : actions/checkout@v1
40
+ name : Download checkout
41
+ uses : actions/download-artifact@v1
42
+ with :
43
+ name : checkout
44
+ path : .
28
45
-
29
46
name : Install CMake 3.6.2
30
47
run : |
81
98
container : " pylegacy/${{ matrix.arch }}-python:${{ matrix.python-version }}-debian-4"
82
99
steps :
83
100
-
84
- name : Checkout
85
- uses : actions/checkout@v1
101
+ name : Download checkout
102
+ uses : actions/download-artifact@v1
103
+ with :
104
+ name : checkout
105
+ path : .
86
106
-
87
107
name : Download GEOS artifacts
88
108
uses : actions/download-artifact@v1
@@ -235,8 +255,11 @@ jobs:
235
255
container : " pylegacy/${{ matrix.arch }}-python:${{ matrix.python-version }}-debian-5"
236
256
steps :
237
257
-
238
- name : Checkout
239
- uses : actions/checkout@v1
258
+ name : Download checkout
259
+ uses : actions/download-artifact@v1
260
+ with :
261
+ name : checkout
262
+ path : .
240
263
-
241
264
name : Download build artifacts
242
265
uses : actions/download-artifact@v1
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
12
+ checkout :
13
+ runs-on : windows-latest
14
+ steps :
15
+ -
16
+ name : Checkout
17
+ uses : actions/checkout@v2
18
+ -
19
+ name : Upload checkout
20
+ uses : actions/upload-artifact@v1
21
+ with :
22
+ name : checkout
23
+ path : .
24
+
12
25
build-geos :
13
26
strategy :
14
27
matrix :
@@ -27,11 +40,15 @@ jobs:
27
40
cmake-version : " 3.13.2"
28
41
max-parallel : 4
29
42
fail-fast : false
43
+ needs : checkout
30
44
runs-on : windows-latest
31
45
steps :
32
46
-
33
- name : Checkout
34
- uses : actions/checkout@v2
47
+ name : Download checkout
48
+ uses : actions/download-artifact@v1
49
+ with :
50
+ name : checkout
51
+ path : .
35
52
-
36
53
name : Set Python
37
54
uses : actions/setup-python@v2
@@ -86,8 +103,11 @@ jobs:
86
103
runs-on : windows-latest
87
104
steps :
88
105
-
89
- name : Checkout
90
- uses : actions/checkout@v2
106
+ name : Download checkout
107
+ uses : actions/download-artifact@v1
108
+ with :
109
+ name : checkout
110
+ path : .
91
111
-
92
112
name : Set Python
93
113
uses : actions/setup-python@v2
@@ -178,8 +198,11 @@ jobs:
178
198
runs-on : windows-latest
179
199
steps :
180
200
-
181
- name : Checkout
182
- uses : actions/checkout@v2
201
+ name : Download checkout
202
+ uses : actions/download-artifact@v1
203
+ with :
204
+ name : checkout
205
+ path : .
183
206
-
184
207
name : Set Python
185
208
uses : actions/setup-python@v2
You can’t perform that action at this time.
0 commit comments