mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-06 17:50:40 +03:00
91 lines
2.9 KiB
YAML
91 lines
2.9 KiB
YAML
version: '{build}'
|
|
|
|
image:
|
|
- Visual Studio 2015
|
|
- Visual Studio 2017
|
|
- Ubuntu1604
|
|
- Ubuntu1804
|
|
|
|
configuration: Release
|
|
|
|
skip_branch_with_pr: true
|
|
clone_depth: 1
|
|
|
|
init:
|
|
- ps: Update-AppveyorBuild -Version "build-$env:APPVEYOR_BUILD_NUMBER-$($env:APPVEYOR_REPO_COMMIT.substring(0,7))"
|
|
|
|
install: git submodule update --init --recursive
|
|
|
|
for:
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2015
|
|
build_script:
|
|
- src\BuildAll.cmd
|
|
- exit %errorlevel%
|
|
after_build:
|
|
- 7z a "%APPVEYOR_BUILD_FOLDER%\src\bin\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x86_%CONFIGURATION%_PDBs.zip" "%APPVEYOR_BUILD_FOLDER%\src\DebugFiles\pdb\Win32_Release\*.pdb"
|
|
- 7z a "%APPVEYOR_BUILD_FOLDER%\src\bin\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%_PDBs.zip" "%APPVEYOR_BUILD_FOLDER%\src\DebugFiles\pdb\x64_Release\*.pdb"
|
|
artifacts:
|
|
- path: output\pkg\*\*
|
|
name: Release
|
|
- path: src\bin\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x86_%CONFIGURATION%_PDBs.zip
|
|
name: PDBs (x86)
|
|
- path: src\bin\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%_PDBs.zip
|
|
name: PDBs (x64)
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Visual Studio 2017
|
|
init:
|
|
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
|
|
before_build:
|
|
- configure
|
|
build_script:
|
|
- nmake
|
|
after_build:
|
|
- 7z a "%APPVEYOR_BUILD_FOLDER%\build\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%.zip" "%APPVEYOR_BUILD_FOLDER%\build\*.exe"
|
|
- 7z a "%APPVEYOR_BUILD_FOLDER%\build\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%.zip" "%APPVEYOR_BUILD_FOLDER%\build\hamcore.se2"
|
|
- 7z a "%APPVEYOR_BUILD_FOLDER%\build\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%_PDBs.zip" "%APPVEYOR_BUILD_FOLDER%\build\*.pdb"
|
|
artifacts:
|
|
- path: build\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%.zip
|
|
name: Release
|
|
- path: build\%APPVEYOR_PROJECT_NAME%_%APPVEYOR_BUILD_VERSION%_Windows_x64_%CONFIGURATION%_PDBs.zip
|
|
name: PDBs
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Ubuntu1604
|
|
before_build:
|
|
- ./configure
|
|
build_script:
|
|
- make package -C tmp -j $(nproc || sysctl -n hw.ncpu || echo 4)
|
|
after_build:
|
|
- .ci/appveyor_afterbuild.sh
|
|
artifacts:
|
|
- path: build/*.deb
|
|
name: Ubuntu
|
|
-
|
|
matrix:
|
|
only:
|
|
- image: Ubuntu1804
|
|
before_build:
|
|
- ./configure
|
|
build_script:
|
|
- make package -C tmp -j $(nproc || sysctl -n hw.ncpu || echo 4)
|
|
- .ci/memory-leak-test.sh
|
|
after_build:
|
|
- .ci/appveyor_afterbuild.sh
|
|
artifacts:
|
|
- path: build/*.deb
|
|
name: Ubuntu
|
|
|
|
deploy:
|
|
description: 'automatic release'
|
|
provider: GitHub
|
|
auth_token:
|
|
secure: FJU1W6Li4W7h3mYJj206ybyhRvBqdSeiSoFJ4lhCkQl6n92ljSVnZiPKPtaSuP6i
|
|
on:
|
|
appveyor_repo_tag: true
|