2015-01-11 18:29:39 +00:00
|
|
|
# shallow clone
|
2016-11-19 20:11:49 +00:00
|
|
|
clone_depth: 10
|
2015-01-11 17:33:44 +00:00
|
|
|
|
2016-08-29 13:19:50 +00:00
|
|
|
cache:
|
|
|
|
- C:\ProgramData\chocolatey\bin -> appveyor.yml
|
|
|
|
- C:\ProgramData\chocolatey\lib -> appveyor.yml
|
|
|
|
|
2017-05-21 22:56:25 +00:00
|
|
|
os: Visual Studio 2017
|
2016-01-04 22:55:53 +00:00
|
|
|
|
2017-08-31 01:39:24 +00:00
|
|
|
environment:
|
|
|
|
# Tell msys2 to add mingw64 to the path
|
|
|
|
MSYSTEM: MINGW64
|
|
|
|
# Tell msys2 to inherit the current directory when starting the shell
|
|
|
|
CHERE_INVOKING: 1
|
|
|
|
matrix:
|
|
|
|
- BUILD_TYPE: msvc
|
2018-01-18 16:40:54 +00:00
|
|
|
- BUILD_TYPE: mingw
|
2017-08-31 01:39:24 +00:00
|
|
|
|
2015-01-15 06:07:18 +00:00
|
|
|
platform:
|
2015-02-08 14:23:33 +00:00
|
|
|
- x64
|
2015-01-15 06:07:18 +00:00
|
|
|
|
|
|
|
configuration:
|
|
|
|
- Release
|
2015-01-11 17:33:44 +00:00
|
|
|
|
|
|
|
install:
|
2015-07-07 19:22:26 +00:00
|
|
|
- git submodule update --init --recursive
|
2017-08-31 01:39:24 +00:00
|
|
|
- ps: |
|
|
|
|
if ($env:BUILD_TYPE -eq 'mingw') {
|
|
|
|
$dependencies = "mingw64/mingw-w64-x86_64-cmake",
|
|
|
|
"mingw64/mingw-w64-x86_64-qt5",
|
|
|
|
"mingw64/mingw-w64-x86_64-SDL2"
|
|
|
|
# redirect err to null to prevent warnings from becoming errors
|
|
|
|
# workaround to prevent pacman from failing due to cyclical dependencies
|
|
|
|
C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw64/mingw-w64-x86_64-freetype mingw64/mingw-w64-x86_64-fontconfig" 2> $null
|
|
|
|
C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S $dependencies" 2> $null
|
|
|
|
}
|
2015-01-11 17:33:44 +00:00
|
|
|
|
|
|
|
before_build:
|
2017-08-31 01:39:24 +00:00
|
|
|
- mkdir %BUILD_TYPE%_build
|
|
|
|
- cd %BUILD_TYPE%_build
|
|
|
|
- ps: |
|
|
|
|
if ($env:BUILD_TYPE -eq 'msvc') {
|
|
|
|
# redirect stderr and change the exit code to prevent powershell from cancelling the build if cmake prints a warning
|
2018-08-29 13:42:53 +00:00
|
|
|
cmd /C 'cmake -G "Visual Studio 15 2017 Win64" -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_BUNDLED_UNICORN=1 -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON .. 2>&1 && exit 0'
|
2017-08-31 01:39:24 +00:00
|
|
|
} else {
|
2018-08-29 13:42:53 +00:00
|
|
|
C:\msys64\usr\bin\bash.exe -lc "cmake -G 'MSYS Makefiles' -DYUZU_BUILD_UNICORN=1 -DCMAKE_BUILD_TYPE=Release -DENABLE_COMPATIBILITY_LIST_DOWNLOAD=ON .. 2>&1"
|
2017-08-31 01:39:24 +00:00
|
|
|
}
|
2015-01-11 17:33:44 +00:00
|
|
|
- cd ..
|
2015-01-24 15:45:06 +00:00
|
|
|
|
2017-08-31 01:39:24 +00:00
|
|
|
build_script:
|
|
|
|
- ps: |
|
|
|
|
if ($env:BUILD_TYPE -eq 'msvc') {
|
|
|
|
# https://www.appveyor.com/docs/build-phase
|
2018-06-23 07:17:32 +00:00
|
|
|
msbuild msvc_build/yuzu.sln /maxcpucount /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|
2017-08-31 01:39:24 +00:00
|
|
|
} else {
|
2018-08-21 00:13:28 +00:00
|
|
|
C:\msys64\usr\bin\bash.exe -lc 'mingw32-make -C mingw_build/ 2>&1'
|
2017-08-31 01:39:24 +00:00
|
|
|
}
|
2016-03-20 14:58:24 +00:00
|
|
|
|
2016-11-19 20:11:49 +00:00
|
|
|
after_build:
|
|
|
|
- ps: |
|
|
|
|
$GITDATE = $(git show -s --date=short --format='%ad') -replace "-",""
|
|
|
|
$GITREV = $(git show -s --format='%h')
|
2017-07-27 04:29:33 +00:00
|
|
|
|
2017-08-10 04:17:27 +00:00
|
|
|
# Find out which kind of release we are producing by tag name
|
|
|
|
if ($env:APPVEYOR_REPO_TAG_NAME) {
|
2017-08-31 01:39:24 +00:00
|
|
|
$RELEASE_DIST, $RELEASE_VERSION = $env:APPVEYOR_REPO_TAG_NAME.split('-')
|
2017-08-10 04:17:27 +00:00
|
|
|
} else {
|
2017-08-31 01:39:24 +00:00
|
|
|
# There is no repo tag - make assumptions
|
|
|
|
$RELEASE_DIST = "head"
|
2017-08-10 04:17:27 +00:00
|
|
|
}
|
2017-07-27 04:29:33 +00:00
|
|
|
|
2017-08-31 01:39:24 +00:00
|
|
|
if ($env:BUILD_TYPE -eq 'msvc') {
|
|
|
|
# Where are these spaces coming from? Regardless, let's remove them
|
2018-01-13 21:37:06 +00:00
|
|
|
$MSVC_BUILD_ZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.zip" -replace " ", ""
|
|
|
|
$MSVC_BUILD_PDB = "yuzu-windows-msvc-$GITDATE-$GITREV-debugsymbols.zip" -replace " ", ""
|
|
|
|
$MSVC_SEVENZIP = "yuzu-windows-msvc-$GITDATE-$GITREV.7z" -replace " ", ""
|
2017-08-31 01:39:24 +00:00
|
|
|
|
|
|
|
# set the build names as env vars so the artifacts can upload them
|
|
|
|
$env:BUILD_ZIP = $MSVC_BUILD_ZIP
|
|
|
|
$env:BUILD_SYMBOLS = $MSVC_BUILD_PDB
|
|
|
|
$env:BUILD_UPDATE = $MSVC_SEVENZIP
|
|
|
|
|
2018-06-23 07:17:32 +00:00
|
|
|
$BUILD_DIR = ".\msvc_build\bin\Release"
|
2018-01-18 16:40:54 +00:00
|
|
|
|
|
|
|
# Make a debug symbol upload
|
2018-01-16 03:53:53 +00:00
|
|
|
mkdir pdb
|
2018-01-18 16:40:54 +00:00
|
|
|
Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb
|
2018-01-16 03:53:53 +00:00
|
|
|
7z a -tzip $MSVC_BUILD_PDB .\pdb\*.pdb
|
2018-01-18 16:40:54 +00:00
|
|
|
rm "$BUILD_DIR\*.pdb"
|
2017-08-31 01:39:24 +00:00
|
|
|
|
|
|
|
mkdir $RELEASE_DIST
|
2018-01-18 16:40:54 +00:00
|
|
|
# get rid of extra exes by copying everything over, then deleting all the exes, then copying just the exes we want
|
|
|
|
Copy-Item "$BUILD_DIR\*" -Destination $RELEASE_DIST -Recurse
|
|
|
|
rm "$RELEASE_DIST\*.exe"
|
|
|
|
Get-ChildItem "$BUILD_DIR" -Recurse -Filter "yuzu*.exe" | Copy-Item -destination $RELEASE_DIST
|
2017-08-31 01:39:24 +00:00
|
|
|
Copy-Item .\license.txt -Destination $RELEASE_DIST
|
|
|
|
Copy-Item .\README.md -Destination $RELEASE_DIST
|
|
|
|
7z a -tzip $MSVC_BUILD_ZIP $RELEASE_DIST\*
|
|
|
|
7z a $MSVC_SEVENZIP $RELEASE_DIST
|
|
|
|
} else {
|
2018-01-13 21:37:06 +00:00
|
|
|
$MINGW_BUILD_ZIP = "yuzu-windows-mingw-$GITDATE-$GITREV.zip" -replace " ", ""
|
|
|
|
$MINGW_SEVENZIP = "yuzu-windows-mingw-$GITDATE-$GITREV.7z" -replace " ", ""
|
2017-08-31 01:39:24 +00:00
|
|
|
# not going to bother adding separate debug symbols for mingw, so just upload a README for it
|
|
|
|
# if someone wants to add them, change mingw to compile with -g and use objdump and strip to separate the symbols from the binary
|
|
|
|
$MINGW_NO_DEBUG_SYMBOLS = "README_No_Debug_Symbols.txt"
|
|
|
|
Set-Content -Path $MINGW_NO_DEBUG_SYMBOLS -Value "This is a workaround for Appveyor since msvc has debug symbols but mingw doesnt" -Force
|
|
|
|
|
|
|
|
# store the build information in env vars so we can use them as artifacts
|
|
|
|
$env:BUILD_ZIP = $MINGW_BUILD_ZIP
|
|
|
|
$env:BUILD_SYMBOLS = $MINGW_NO_DEBUG_SYMBOLS
|
|
|
|
$env:BUILD_UPDATE = $MINGW_SEVENZIP
|
|
|
|
|
|
|
|
$CMAKE_SOURCE_DIR = "$env:APPVEYOR_BUILD_FOLDER"
|
2018-01-16 03:53:53 +00:00
|
|
|
$CMAKE_BINARY_DIR = "$CMAKE_SOURCE_DIR/mingw_build/bin"
|
2017-08-31 01:39:24 +00:00
|
|
|
$RELEASE_DIST = $RELEASE_DIST + "-mingw"
|
|
|
|
|
|
|
|
mkdir $RELEASE_DIST
|
|
|
|
mkdir $RELEASE_DIST/platforms
|
2018-07-03 02:31:21 +00:00
|
|
|
mkdir $RELEASE_DIST/styles
|
2018-07-29 17:55:21 +00:00
|
|
|
mkdir $RELEASE_DIST/imageformats
|
2017-08-31 01:39:24 +00:00
|
|
|
|
|
|
|
# copy the compiled binaries and other release files to the release folder
|
2018-01-16 03:53:53 +00:00
|
|
|
Get-ChildItem "$CMAKE_BINARY_DIR" -Filter "yuzu*.exe" | Copy-Item -destination $RELEASE_DIST
|
2017-08-31 01:39:24 +00:00
|
|
|
Copy-Item -path "$CMAKE_SOURCE_DIR/license.txt" -destination $RELEASE_DIST
|
|
|
|
Copy-Item -path "$CMAKE_SOURCE_DIR/README.md" -destination $RELEASE_DIST
|
2018-01-18 09:55:56 +00:00
|
|
|
|
2017-08-31 01:39:24 +00:00
|
|
|
# copy all the dll dependencies to the release folder
|
2018-01-18 09:55:56 +00:00
|
|
|
. "./.appveyor/UtilityFunctions.ps1"
|
|
|
|
$DLLSearchPath = "C:\msys64\mingw64\bin;$env:PATH"
|
|
|
|
$MingwDLLs = RecursivelyGetDeps $DLLSearchPath "$RELEASE_DIST\yuzu.exe"
|
|
|
|
$MingwDLLs += RecursivelyGetDeps $DLLSearchPath "$RELEASE_DIST\yuzu_cmd.exe"
|
|
|
|
Write-Host "Detected the following dependencies:"
|
|
|
|
Write-Host $MingwDLLs
|
2017-08-31 01:39:24 +00:00
|
|
|
foreach ($file in $MingwDLLs) {
|
2018-01-18 09:55:56 +00:00
|
|
|
Copy-Item -path "$file" -force -destination "$RELEASE_DIST"
|
2017-09-06 00:57:47 +00:00
|
|
|
}
|
2017-08-31 01:39:24 +00:00
|
|
|
|
|
|
|
# copy the qt windows plugin dll to platforms
|
|
|
|
Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/platforms/qwindows.dll" -force -destination "$RELEASE_DIST/platforms"
|
|
|
|
|
2018-07-03 02:31:21 +00:00
|
|
|
# copy the qt windows vista style dll to platforms
|
|
|
|
Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/styles/qwindowsvistastyle.dll" -force -destination "$RELEASE_DIST/styles"
|
|
|
|
|
2018-07-29 17:55:21 +00:00
|
|
|
# copy the qt jpeg imageformat dll to platforms
|
|
|
|
Copy-Item -path "C:/msys64/mingw64/share/qt5/plugins/imageformats/qjpeg.dll" -force -destination "$RELEASE_DIST/imageformats"
|
|
|
|
|
2017-08-31 01:39:24 +00:00
|
|
|
7z a -tzip $MINGW_BUILD_ZIP $RELEASE_DIST\*
|
|
|
|
7z a $MINGW_SEVENZIP $RELEASE_DIST
|
|
|
|
}
|
2016-09-01 16:47:31 +00:00
|
|
|
|
2016-11-19 20:11:49 +00:00
|
|
|
test_script:
|
2017-08-31 01:39:24 +00:00
|
|
|
- cd %BUILD_TYPE%_build
|
|
|
|
- ps: |
|
|
|
|
if ($env:BUILD_TYPE -eq 'msvc') {
|
|
|
|
ctest -VV -C Release
|
|
|
|
} else {
|
|
|
|
C:\msys64\usr\bin\bash.exe -lc "ctest -VV -C Release"
|
|
|
|
}
|
|
|
|
- cd ..
|
2015-05-25 18:34:09 +00:00
|
|
|
|
2016-11-19 20:11:49 +00:00
|
|
|
artifacts:
|
2017-08-31 01:39:24 +00:00
|
|
|
- path: $(BUILD_ZIP)
|
|
|
|
name: build
|
2016-11-19 20:11:49 +00:00
|
|
|
type: zip
|
2015-05-25 18:34:09 +00:00
|
|
|
|