diff options
| author | Jean-Baptiste Galet <jbgalet@users.noreply.github.com> | 2020-04-28 07:49:38 +0200 |
|---|---|---|
| committer | Jean-Baptiste Galet <oss@jbgalet.fr> | 2020-04-28 13:59:54 +0200 |
| commit | 6ce751474346a21f87be3712b51180e6fc36dab6 (patch) | |
| tree | a2252b7f1f3a377ae39c0c6852ad2cc43738e275 /.appveyor.yml | |
| parent | e20709073eb6deb60d68596127c2f4b022a0e5a1 (diff) | |
| download | focaccia-miasm-6ce751474346a21f87be3712b51180e6fc36dab6.tar.gz focaccia-miasm-6ce751474346a21f87be3712b51180e6fc36dab6.zip | |
Add Appveyor for Python3.8
* Appveyor * Fix typo, update jitcore_llvm.py, update llvmlite to 0.32.0 to have python3.8 wheels * Add all platforms in AppVeyor. Use -m to avoid WinError 32 * Use llvmlite 0.31.0, latest version to provide Python2.7 support AND Python3.8 * Remove -m
Diffstat (limited to '.appveyor.yml')
| -rw-r--r-- | .appveyor.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 3023dc8f..a518626f 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -19,6 +19,17 @@ environment: PYTHON: c:\Python27-x64 PYTHON_VERSION: "2.7.x" + - platform: Win32 + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + PLATFORM_TOOLSET: v141 + PYTHON: c:\Python38 + PYTHON_VERSION: "3.8.x" + + - platform: x64 + APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + PLATFORM_TOOLSET: v141 + PYTHON: c:\Python38-x64 + PYTHON_VERSION: "3.8.x" # on_finish: # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) |