Skip to content

Commit 773ef5f

Browse files
committed
AppVeyor debug [deploy pkg] [travis skip]
1 parent f0e8ac9 commit 773ef5f

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ after_build:
5353
If (($env:POV_BUILD_PKG -eq "yes") -and ([int]$env:POV_ARTEFACT_ITEM_COUNT -gt 50)){
5454
cd $env:APPVEYOR_BUILD_FOLDER; write-host "Creating single tarball artefact..."
5555
bash -lc "tar -czf lpub3d_windows_3rdparty.tar.gz ./lpub3d_windows_3rdparty && echo Tarball lpub3d_windows_3rdparty.tar.gz created."
56+
bash -lc "echo FILE LISTING... && find $PWD/ -type f"
5657
$root = Resolve-Path $env:APPVEYOR_BUILD_FOLDER; [IO.Directory]::GetFiles($root.Path, '*.tar.gz', 'TopDirectoryOnly') | % { Push-AppveyorArtifact $_ -FileName $_.Substring($root.Path.Length + 1) -DeploymentName $env:POV_DIST_DIR}
5758
}
5859

windows/vs2015/autobuild.cmd

+3-5
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@ EXIT /b
359359
rem Display the build configuration and platform settings
360360
ECHO.
361361
ECHO -%BUILD_LBL% all CUI Platforms for %CONFIGURATION% Configuration...
362-
rem Launch msbuild across all CUI platform builds Win32, x64
363-
FOR %%P IN ( x64 ) DO (
362+
rem Launch msbuild across all CUI platform builds
363+
FOR %%P IN ( Win32, x64 ) DO (
364364
SETLOCAL ENABLEDELAYEDEXPANSION
365365
rem Assemble command line
366366
SET COMMAND_LINE=msbuild /m /p:Configuration=%CONFIGURATION% /p:Platform=%%P %PROJECT% %LOGGING% %DO_REBUILD%
@@ -411,8 +411,6 @@ bin%PL%\%PACKAGE%%PL%%d%.exe %BUILD_CHK_COMMAND%
411411
EXIT /b
412412

413413
:3RD_PARTY_INSTALL
414-
ECHO.
415-
ECHO WE ARE HERE [%CD%]
416414
rem Version major and minor pulled in from autobuild_defs
417415
SET VERSION_BASE=%VERSION_MAJ%.%VERSION_MIN%
418416
ECHO.
@@ -451,7 +449,7 @@ IF %INSTALL_ALL% == 1 SET DIST_DIR=%DIST_DIR_ROOT%\%PACKAGE%-%VERSION_BASE%\re
451449
IF %INSTALL_ALL% == 1 ECHO -Copying Include scripts...
452450
IF %INSTALL_ALL% == 1 XCOPY /Q /S /I /E /V /Y "..\..\distribution\include" "%DIST_DIR%\include"
453451
IF %INSTALL_ALL% == 1 ECHO -Copying Initialization files...
454-
IF %INSTALL_ALL% == 1 XCOPY /S /I /E /V /Y "..\..\distribution\ini" "%DIST_DIR%\ini"
452+
IF %INSTALL_ALL% == 1 XCOPY /Q /S /I /E /V /Y "..\..\distribution\ini" "%DIST_DIR%\ini"
455453
REM IF %INSTALL_ALL% == 1 XCOPY /Q /S /I /E /V /Y "%DIST_SRC%\Icons" "%DIST_DIR%\Icons"
456454
REM IF %INSTALL_ALL% == 1 XCOPY /Q /S /I /E /V /Y "..\..\distribution\scenes" "%DIST_DIR%\scenes"
457455

0 commit comments

Comments
 (0)