diff --git a/appveyor-clean-cache.txt b/appveyor-clean-cache.txt deleted file mode 100644 index d00491fd7..000000000 --- a/appveyor-clean-cache.txt +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/appveyor-run.cmd b/appveyor-run.cmd deleted file mode 100644 index f907a52b8..000000000 --- a/appveyor-run.cmd +++ /dev/null @@ -1,26 +0,0 @@ -:: Execute etstool operation for every tookit in the argument list -:: Options -:: %1 -- operation -:: %2 -- runtime -:: %3... -- tookits -:: -:: -SETLOCAL EnableDelayedExpansion - -SET counter=0 - -FOR %%x IN (%*) DO ( -SET /A counter=!counter! + 1 -IF !counter! EQU 1 SET operation=%%x -IF !counter! EQU 2 SET runtime=%%x -IF !counter! GTR 2 CALL edm run -- python etstool.py !operation! --runtime=!runtime! --toolkit=%%x || GOTO error -) -GOTO end - -:error: -ENDLOCAL -EXIT /b %ERRORLEVEL% - -:end: -ENDLOCAL -ECHO.Done diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 97f29cd74..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,41 +0,0 @@ -build: false -shallow_clone: false -skip_branch_with_pr: true -environment: - - global: - PYTHONUNBUFFERED: "1" - INSTALL_EDM_VERSION: "3.2.3" - - matrix: - - RUNTIME: '3.6' - TOOLKITS: "wx" - - RUNTIME: '3.6' - TOOLKITS: "pyside2 pyqt5" - -matrix: - fast_finish: true - allow_failures: - - RUNTIME: '3.6' - TOOLKITS: "pyside2 pyqt5" - - -branches: - only: - - master - - /maint\/.*/ - -cache: - - C:\Users\appveyor\.cache -> appveyor-clean-cache.txt - - C:\Users\appveyor\AppData\Local\pip\Cache -> appveyor-clean-cache.txt - -init: - - ps: $Env:path = "C:/Enthought/edm;" + $Env:path - - ps: md C:/Users/appveyor/.cache -Force - -install: - - install-edm-windows.cmd - - edm install -y wheel click coverage - - appveyor-run.cmd install %runtime% %toolkits% -test_script: - - appveyor-run.cmd test %runtime% %toolkits% diff --git a/install-edm-linux.sh b/install-edm-linux.sh deleted file mode 100755 index 342b56bde..000000000 --- a/install-edm-linux.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -set -e - -install_edm() { - local EDM_MAJOR_MINOR="$(echo "$INSTALL_EDM_VERSION" | sed -E -e 's/([[:digit:]]+\.[[:digit:]]+)\..*/\1/')" - local EDM_PACKAGE="edm_cli_${INSTALL_EDM_VERSION}_linux_x86_64.sh" - local EDM_INSTALLER_PATH="${HOME}/.cache/download/${EDM_PACKAGE}" - - if [ ! -e "$EDM_INSTALLER_PATH" ]; then - curl -o "$EDM_INSTALLER_PATH" -L "https://package-data.enthought.com/edm/rh6_x86_64/${EDM_MAJOR_MINOR}/${EDM_PACKAGE}" - fi - - bash "$EDM_INSTALLER_PATH" -b -p "${HOME}/edm" -} - -install_edm diff --git a/install-edm-osx.sh b/install-edm-osx.sh deleted file mode 100755 index 5be73c658..000000000 --- a/install-edm-osx.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -set -e - -install_edm() { - local EDM_MAJOR_MINOR="$(echo "$INSTALL_EDM_VERSION" | sed -E -e 's/([[:digit:]]+\.[[:digit:]]+)\..*/\1/')" - local EDM_PACKAGE="edm_cli_${INSTALL_EDM_VERSION}.pkg" - local EDM_INSTALLER_PATH="${HOME}/.cache/download/${EDM_PACKAGE}" - - if [ ! -e "$EDM_INSTALLER_PATH" ]; then - curl -o "$EDM_INSTALLER_PATH" -L "https://package-data.enthought.com/edm/osx_x86_64/${EDM_MAJOR_MINOR}/${EDM_PACKAGE}" - fi - - sudo installer -pkg "$EDM_INSTALLER_PATH" -target / -} - -install_edm diff --git a/install-edm-windows.cmd b/install-edm-windows.cmd deleted file mode 100644 index c7cfee5d0..000000000 --- a/install-edm-windows.cmd +++ /dev/null @@ -1,26 +0,0 @@ -@ECHO OFF - -SETLOCAL EnableDelayedExpansion - -FOR /F "tokens=1,2,3 delims=." %%a in ("%INSTALL_EDM_VERSION%") do ( - SET MAJOR=%%a - SET MINOR=%%b - SET REVISION=%%c -) - -SET EDM_MAJOR_MINOR=%MAJOR%.%MINOR% -SET EDM_PACKAGE=edm_cli_%INSTALL_EDM_VERSION%_x86_64.msi -SET EDM_INSTALLER_PATH=%HOMEDRIVE%%HOMEPATH%\.cache\%EDM_PACKAGE% -SET COMMAND="(new-object net.webclient).DownloadFile('https://package-data.enthought.com/edm/win_x86_64/%EDM_MAJOR_MINOR%/%EDM_PACKAGE%', '%EDM_INSTALLER_PATH%')" - -IF NOT EXIST %EDM_INSTALLER_PATH% CALL powershell.exe -Command %COMMAND% || GOTO error -CALL msiexec /qn /i %EDM_INSTALLER_PATH% EDMAPPDIR=C:\Enthought\edm || GOTO error - -ENDLOCAL -@ECHO.DONE -EXIT - -:error: -ENDLOCAL -@ECHO.ERROR -EXIT /b %ERRORLEVEL%