sm-ext-accelerator-2023/appveyor.yml

25 lines
832 B
YAML
Raw Normal View History

2016-01-14 13:48:36 +01:00
version: '{build}'
2018-07-19 18:14:05 +02:00
os: Visual Studio 2015
2016-01-14 14:03:39 +01:00
environment:
2018-07-19 18:14:05 +02:00
GYP_MSVS_VERSION: '2015'
2016-01-14 13:48:36 +01:00
install:
- cd ..
2017-09-13 12:23:32 +02:00
- git clone --depth=1 --branch=1.7-dev https://github.com/alliedmodders/sourcemod sourcemod-1.7
2016-01-14 13:48:36 +01:00
- git clone --depth=1 --branch=master https://github.com/alliedmodders/ambuild
- cd ambuild
- C:\python27\python.exe setup.py install
- cd %APPVEYOR_BUILD_FOLDER%
2018-07-19 18:33:19 +02:00
- '"%VS140COMNTOOLS%\vsvars32.bat"'
2016-01-14 13:48:36 +01:00
- breakpad.bat
build_script:
2018-07-19 18:14:05 +02:00
- '"%VS140COMNTOOLS%\vsvars32.bat"'
2016-01-14 13:48:36 +01:00
- mkdir build
- cd build
- C:\python27\python.exe ..\configure.py --enable-optimize
- C:\python27\python.exe build.py
2018-07-20 00:17:33 +02:00
test: off
2016-01-14 13:48:36 +01:00
on_success:
- C:\python27\python.exe ..\upload.py
2018-07-19 18:33:19 +02:00
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))