File tree 2 files changed +51
-12
lines changed
2 files changed +51
-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
+ TRAVIS_OS_NAME : windows
95
+
96
+ steps :
97
+ - name : Check out code
98
+ uses : actions/checkout@v2
99
+
100
+ - name : Build and test gssapi
101
+ shell : bash
102
+ run : |
103
+ ./.travis/build.sh
104
+
105
+ windows-latest-python-373 :
106
+ runs-on : windows-latest
107
+ name : ' windows-latest / Python 3.7.3'
108
+ env :
109
+ PYTHON : 3
110
+ PYENV : ' 3.7.3'
111
+ TRAVIS_OS_NAME : windows
112
+
113
+ steps :
114
+ - name : Check out code
115
+ uses : actions/checkout@v2
116
+
117
+ - name : Build and test gssapi
118
+ shell : bash
119
+ run : |
120
+ ./.travis/build.sh
121
+
122
+ windows-latest-python-368 :
123
+ runs-on : windows-latest
124
+ name : ' windows-latest / Python 3.6.8'
125
+ env :
126
+ PYTHON : 3
127
+ PYENV : ' 3.6.8'
128
+ TRAVIS_OS_NAME : windows
129
+
130
+ steps :
131
+ - name : Check out code
132
+ uses : actions/checkout@v2
133
+
134
+ - name : Build and test gssapi
135
+ shell : bash
136
+ run : |
137
+ ./.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