From efa195802360c2d82dff83cec6fce8820b8dd68a Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 14 Aug 2020 09:51:30 +0000 Subject: [PATCH] Add a windows gitlab implementation --- .gitlab-ci.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 697e9fe4..c67398e0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,3 @@ - linux: image: python:3.8 services: @@ -14,3 +13,15 @@ linux: - curl -sSL https://get.docker.com/ | sh - python -m pip install -r requirements-dev.txt - python ./bin/run_tests.py + +windows: + tags: + - shared-windows + - windows + - windows-1809 + variables: + - PYTHON=C:\\Python36\\python + script: + - choco install python3 --version 3.6.8 --no-progress -y + - $PYTHON -m pip install -r requirements-dev.txt + - $PYTHON ./bin/run_tests.py