Skip to content

Commit c751b51

Browse files
committed
Migrate Windows test jobs to GitHub actions
1 parent b518fe2 commit c751b51

File tree

2 files changed

+51
-12
lines changed

2 files changed

+51
-12
lines changed

.github/workflows/testing.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,54 @@ jobs:
8484
shell: bash
8585
run: |
8686
./.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

.travis.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,6 @@ script:
2929
jobs:
3030
# need to explictly define each builder for test due to different os types
3131
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-
4432
- stage: deploy latest docs
4533
script: skip
4634
env:

0 commit comments

Comments
 (0)