summaryrefslogtreecommitdiffstats
path: root/build/appveyor
diff options
context:
space:
mode:
authorRJ Ryan <rryan@mixxx.org>2017-01-23 11:36:35 -0800
committerRJ Ryan <rryan@mixxx.org>2017-01-23 11:40:16 -0800
commitf1d5a11a458efd599afe8f89c0201b3e41e4ce9f (patch)
treea1475d652b72532a56f050892dcf2ee907b9d613 /build/appveyor
parent9c640dbcbfb2525a200ec4015ba95700274c954b (diff)
Update AppVeyor build to "2.1-j00018-%platform%-%configuration%-fastbuild-static-7510b10-minimal".
Also move install_buildenv.bat to build/windows and make it usable by Jenkins.
Diffstat (limited to 'build/appveyor')
-rw-r--r--build/appveyor/install_buildenv.bat46
1 files changed, 0 insertions, 46 deletions
diff --git a/build/appveyor/install_buildenv.bat b/build/appveyor/install_buildenv.bat
deleted file mode 100644
index c1df2b8426..0000000000
--- a/build/appveyor/install_buildenv.bat
+++ /dev/null
@@ -1,46 +0,0 @@
-@ECHO OFF
-
-SET BUILDENVBASEDIR=C:\MIXXX-BUILDSERVER
-
-REM precompiled compressed build env base URL
-SET BASEURL=%1
-
-REM Build envs to install. You can specify more than one separated by spaces (no quotes)
-SET BUILDENVS=%2
-
-REM ---------------------------
-
-REM main()
-
-REM uncomment the following line if you want to empty cache and
-REM force buildenv (and build script) download
-REM RMDIR /S /Q %BUILDENVBASEDIR%
-
-REM Install build env base dir
-IF NOT EXIST %BUILDENVBASEDIR% MKDIR %BUILDENVBASEDIR%
-
-REM Install build envs
-FOR %%G IN (%BUILDENVS%) DO CALL :installbuildenv %%G
-
-REM End of main()
-GOTO:EOF
-
-REM ---------------------------
-
-REM FUNCTION installbuildenv(build_env_name)
-:installbuildenv
-SETLOCAL
-IF EXIST "%BUILDENVBASEDIR%\%1" GOTO BUILDENVEXISTS
-ECHO Installing build env %1
-CD %BUILDENVBASEDIR%
-echo ..Downloading %1.zip
-curl -fsS -L -o %1.zip %BASEURL%/%1.zip
-echo ..unzipping %1.zip
-7z x %1.zip
-DEL %1.zip
-GOTO ENDFUNC
-:BUILDENVEXISTS
-ECHO "Build env %1 seems to already exist. Leaving without doing anything"
-:ENDFUNC
-ENDLOCAL
-GOTO:EOF