File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ on: [pull_request]
5
5
jobs :
6
6
lint :
7
7
name : Lint check
8
- runs-on : ubuntu-latest
8
+ runs-on : ubuntu-20.04
9
9
steps :
10
10
- uses : actions/checkout@v1
11
11
- uses : actions/setup-python@v1
@@ -19,24 +19,22 @@ jobs:
19
19
20
20
format :
21
21
name : Formatting check
22
- runs-on : ubuntu-latest
22
+ runs-on : ubuntu-20.04
23
23
24
24
steps :
25
25
- uses : actions/checkout@v1
26
26
- uses : actions/setup-python@v1
27
27
with :
28
28
python-version : ' 3.8'
29
29
architecture : ' x64'
30
- - name : get ubuntu version
31
- run : lsb_release -a
32
30
- name : Install Format tools
33
31
run : pip install --upgrade pip setuptools; pip install -r requirements.txt; sudo apt-get install -y clang-format-6.0
34
32
- name : Format Check
35
33
run : ./scripts/format_check.sh
36
34
37
35
wheel-build :
38
36
name : Wheel test
39
- runs-on : ubuntu-latest
37
+ runs-on : ubuntu-20.04
40
38
41
39
steps :
42
40
- uses : actions/checkout@v1
55
53
56
54
bazel-tests :
57
55
name : Library tests
58
- runs-on : ubuntu-latest
56
+ runs-on : ubuntu-20.04
59
57
needs : [lint, format]
60
58
61
59
steps :
73
71
74
72
leak-tests :
75
73
name : Memory Leak tests
76
- runs-on : ubuntu-latest
74
+ runs-on : ubuntu-20.04
77
75
needs : [lint, format]
78
76
79
77
steps :
91
89
92
90
tutorials-test :
93
91
name : Tutorial tests
94
- runs-on : ubuntu-latest
92
+ runs-on : ubuntu-20.04
95
93
needs : [lint, format, wheel-build]
96
94
97
95
steps :
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
consistency :
10
10
name : Nightly Compatibility
11
- runs-on : ubuntu-latest
11
+ runs-on : ubuntu-20.04
12
12
steps :
13
13
- uses : actions/checkout@v1
14
14
- uses : actions/setup-python@v1
You can’t perform that action at this time.
0 commit comments