Skip to content

Commit 56931cd

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

File tree

2 files changed

+48
-12
lines changed

2 files changed

+48
-12
lines changed

.github/workflows/testing.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,51 @@ 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+
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

.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)