File tree 2 files changed +48
-12
lines changed
2 files changed +48
-12
lines changed Original file line number Diff line number Diff line change 84
84
shell : bash
85
85
run : |
86
86
./.travis/build.sh
87
+
88
+ windows-latest-python-381 :
89
+ runs-on : windows-latest
90
+ name : ' windows-latest / Python 3.8.1'
91
+ env :
92
+ PYTHON : 3
93
+ PYENV : ' 3.8.1'
94
+
95
+ steps :
96
+ - name : Check out code
97
+ uses : actions/checkout@v2
98
+
99
+ - name : Build and test gssapi
100
+ shell : bash
101
+ run : |
102
+ ./.travis/build.sh
103
+
104
+ windows-latest-python-373 :
105
+ runs-on : windows-latest
106
+ name : ' windows-latest / Python 3.7.3'
107
+ env :
108
+ PYTHON : 3
109
+ PYENV : ' 3.7.3'
110
+
111
+ steps :
112
+ - name : Check out code
113
+ uses : actions/checkout@v2
114
+
115
+ - name : Build and test gssapi
116
+ shell : bash
117
+ run : |
118
+ ./.travis/build.sh
119
+
120
+ windows-latest-python-368 :
121
+ runs-on : windows-latest
122
+ name : ' windows-latest / Python 3.6.8'
123
+ env :
124
+ PYTHON : 3
125
+ PYENV : ' 3.6.8'
126
+
127
+ steps :
128
+ - name : Check out code
129
+ uses : actions/checkout@v2
130
+
131
+ - name : Build and test gssapi
132
+ shell : bash
133
+ run : |
134
+ ./.travis/build.sh
Original file line number Diff line number Diff line change @@ -29,18 +29,6 @@ script:
29
29
jobs :
30
30
# need to explictly define each builder for test due to different os types
31
31
include :
32
- - &win_test
33
- stage : test
34
- env : PYTHON="3" PYENV="3.8.1"
35
- os : windows
36
- language : sh # Windows not supported yet
37
-
38
- - << : *win_test
39
- env : PYTHON="3" PYENV="3.7.3"
40
-
41
- - << : *win_test
42
- env : PYTHON="3" PYENV="3.6.8"
43
-
44
32
- stage : deploy latest docs
45
33
script : skip
46
34
env :
You can’t perform that action at this time.
0 commit comments