|
@@ -39,16 +39,15 @@ install:
|
|
|
{
|
|
{
|
|
|
if ($env:APPVEYOR_REPO_TAG -eq "false")
|
|
if ($env:APPVEYOR_REPO_TAG -eq "false")
|
|
|
{
|
|
{
|
|
|
- git fetch --unshallow;
|
|
|
|
|
$env:UPLOAD_DIR = "/home/frs/project/$env:APPVEYOR_PROJECT_SLUG/Snapshots";
|
|
$env:UPLOAD_DIR = "/home/frs/project/$env:APPVEYOR_PROJECT_SLUG/Snapshots";
|
|
|
|
|
+ git fetch -q --unshallow;
|
|
|
}
|
|
}
|
|
|
else
|
|
else
|
|
|
{
|
|
{
|
|
|
$env:UPLOAD_DIR = "/home/frs/project/$env:APPVEYOR_PROJECT_SLUG/$env:APPVEYOR_REPO_TAG_NAME";
|
|
$env:UPLOAD_DIR = "/home/frs/project/$env:APPVEYOR_PROJECT_SLUG/$env:APPVEYOR_REPO_TAG_NAME";
|
|
|
}
|
|
}
|
|
|
$env:PACKAGE_UPLOAD = '1';
|
|
$env:PACKAGE_UPLOAD = '1';
|
|
|
- choco install doxygen.portable;
|
|
|
|
|
- choco install graphviz.portable;
|
|
|
|
|
|
|
+ choco install doxygen.portable graphviz.portable >$null;
|
|
|
}
|
|
}
|
|
|
build_script:
|
|
build_script:
|
|
|
- if "%PLATFORM%" == "x64" set "OPTS=URHO3D_64BIT=1"
|
|
- if "%PLATFORM%" == "x64" set "OPTS=URHO3D_64BIT=1"
|
|
@@ -56,7 +55,8 @@ build_script:
|
|
|
- rake make config=%CONFIGURATION%
|
|
- rake make config=%CONFIGURATION%
|
|
|
# Could run test target as AppVeyor does not have service similar to xvfb for headless GUI test run
|
|
# Could run test target as AppVeyor does not have service similar to xvfb for headless GUI test run
|
|
|
# - rake make config=%CONFIGURATION% target=RUN_TESTS
|
|
# - rake make config=%CONFIGURATION% target=RUN_TESTS
|
|
|
- - if "%PACKAGE_UPLOAD%" == "1" rake make config=%CONFIGURATION% target=doc && rake make config=%CONFIGURATION% target=package
|
|
|
|
|
|
|
+ - if "%PACKAGE_UPLOAD%" == "1" (rake make config=%CONFIGURATION% target=doc
|
|
|
|
|
+ rake make config=%CONFIGURATION% target=package)
|
|
|
test: off
|
|
test: off
|
|
|
artifacts:
|
|
artifacts:
|
|
|
- path: ..\native-Build\*.zip
|
|
- path: ..\native-Build\*.zip
|