diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 81db11c44..000000000 --- a/.appveyor.yml +++ /dev/null @@ -1,39 +0,0 @@ -# For Windows based CI - -environment: - - matrix: - - # For Python versions available on Appveyor, see - # https://www.appveyor.com/docs/windows-images-software/#python - - - BUILD_NAME: py38-unit - PYTHON: "C:\\Python38" - - - BUILD_NAME: py38-lint - PYTHON: "C:\\Python38" - - - BUILD_NAME: py38-docs - PYTHON: "C:\\Python38" - - - BUILD_NAME: py38-acceptance-ghdl - PYTHON: "C:\\Python38" - - - BUILD_NAME: py38-vcomponents-ghdl - PYTHON: "C:\\Python38" - -install: - - "git submodule update --init --recursive" - - "%PYTHON%\\python.exe -m pip install -U pip" - - "%PYTHON%\\python.exe -m pip install -U virtualenv" - - "%PYTHON%\\python.exe -m pip install tox" - - "curl -fsSL -o ghdl.zip https://github.com/ghdl/ghdl/releases/download/v0.36/ghdl-0.36-mingw32-mcode.zip" - - "7z x ghdl.zip -o../ghdl -y" - - "mv ../ghdl/GHDL/0.36-mingw32-mcode/ ../ghdl-v0.36" - - "rm -rf ../ghdl ghdl.zip" - - "set PATH=%PATH%;../ghdl-v0.36/bin" - -build: off - -test_script: - - "%PYTHON%\\python.exe -m tox -e %BUILD_NAME%"