diff options
-rw-r--r-- | .gitlab-ci.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 21de1f2de..fea5aeeeb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -223,6 +223,43 @@ lint: except: - schedules +tests-win32-master: + stage: test + variables: + LC_ALL: C.UTF-8 + LANG: C.UTF-8 + tags: + - win32 + before_script: + - pip install colorama windows-curses cython + - pip install -e . + script: + - bst help + - md testdir + - bst init testdir --project-name="test" + only: + - master + +tests-win32-non-master: + stage: test + variables: + LC_ALL: C.UTF-8 + LANG: C.UTF-8 + tags: + - win32 + before_script: + - whoami + - $Env:Path + - pip install colorama windows-curses cython + - pip install -e . + script: + - bst help + - md testdir + - bst init testdir --project-name="test" + except: + - master + when: manual + tests-wsl-master: stage: test variables: |