-
-
Notifications
You must be signed in to change notification settings - Fork 136
/
appveyor.yml
44 lines (39 loc) · 1.01 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
version: 1.0.{build}
image: Visual Studio 2019
environment:
matrix:
# Disable Py27 builds since they run into certificate issues when retrieving the LuaJIT git submodule.
# - python: 27
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
# - python: 27-x64
# APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
- python: 311
- python: 311-x64
- python: 310
- python: 310-x64
- python: 39
- python: 39-x64
- python: 38
- python: 38-x64
- python: 37
- python: 37-x64
- python: 36
- python: 36-x64
- python: 35
- python: 35-x64
install:
- SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%
- python -m pip.__main__ install -U pip wheel setuptools
- pip install -r requirements.txt
- git submodule update --init --recursive
build: off
build_script:
- python -u setup.py clean
- python -u setup.py build install --use-bundle
- python -u setup.py bdist_wheel --use-bundle
test: off
test_script:
- python -u -m lupa.tests.__main__
artifacts:
- path: dist/*.whl
name: wheels