|
|
@ -28,7 +28,6 @@ install: |
|
|
if ($env:BUILD_TYPE -eq 'mingw') { |
|
|
if ($env:BUILD_TYPE -eq 'mingw') { |
|
|
$dependencies = "mingw64/mingw-w64-x86_64-cmake", |
|
|
$dependencies = "mingw64/mingw-w64-x86_64-cmake", |
|
|
"mingw64/mingw-w64-x86_64-qt5", |
|
|
"mingw64/mingw-w64-x86_64-qt5", |
|
|
"mingw64/mingw-w64-x86_64-curl", |
|
|
|
|
|
"mingw64/mingw-w64-x86_64-SDL2" |
|
|
"mingw64/mingw-w64-x86_64-SDL2" |
|
|
# redirect err to null to prevent warnings from becoming errors |
|
|
# redirect err to null to prevent warnings from becoming errors |
|
|
# workaround to prevent pacman from failing due to cyclical dependencies |
|
|
# workaround to prevent pacman from failing due to cyclical dependencies |
|
|
@ -42,9 +41,9 @@ before_build: |
|
|
- ps: | |
|
|
- ps: | |
|
|
if ($env:BUILD_TYPE -eq 'msvc') { |
|
|
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 |
|
|
# redirect stderr and change the exit code to prevent powershell from cancelling the build if cmake prints a warning |
|
|
cmd /C 'cmake -G "Visual Studio 15 2017 Win64" -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_BUNDLED_UNICORN=1 -DCMAKE_USE_OPENSSL=0 .. 2>&1 && exit 0' |
|
|
|
|
|
|
|
|
cmd /C 'cmake -G "Visual Studio 15 2017 Win64" -DYUZU_USE_BUNDLED_QT=1 -DYUZU_USE_BUNDLED_SDL2=1 -DYUZU_USE_BUNDLED_UNICORN=1 .. 2>&1 && exit 0' |
|
|
} else { |
|
|
} else { |
|
|
C:\msys64\usr\bin\bash.exe -lc "cmake -G 'MSYS Makefiles' -DUSE_SYSTEM_CURL=1 -DYUZU_USE_BUNDLED_CURL=1 -DCMAKE_BUILD_TYPE=Release .. 2>&1" |
|
|
|
|
|
|
|
|
C:\msys64\usr\bin\bash.exe -lc "cmake -G 'MSYS Makefiles' -DYUZU_BUILD_UNICORN=1 -DCMAKE_BUILD_TYPE=Release .. 2>&1" |
|
|
} |
|
|
} |
|
|
- cd .. |
|
|
- cd .. |
|
|
|
|
|
|
|
|
@ -81,11 +80,12 @@ after_build: |
|
|
$env:BUILD_SYMBOLS = $MSVC_BUILD_PDB |
|
|
$env:BUILD_SYMBOLS = $MSVC_BUILD_PDB |
|
|
$env:BUILD_UPDATE = $MSVC_SEVENZIP |
|
|
$env:BUILD_UPDATE = $MSVC_SEVENZIP |
|
|
|
|
|
|
|
|
7z a -tzip $MSVC_BUILD_PDB .\msvc_build\bin\release\*.pdb |
|
|
|
|
|
rm .\msvc_build\bin\release\*.pdb |
|
|
|
|
|
|
|
|
mkdir pdb |
|
|
|
|
|
Get-ChildItem ".\msvc_build\bin\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb |
|
|
|
|
|
7z a -tzip $MSVC_BUILD_PDB .\pdb\*.pdb |
|
|
|
|
|
|
|
|
mkdir $RELEASE_DIST |
|
|
mkdir $RELEASE_DIST |
|
|
Copy-Item .\msvc_build\bin\release\* -Destination $RELEASE_DIST -Recurse |
|
|
|
|
|
|
|
|
Get-ChildItem ".\msvc_build\bin\" -Recurse -Filter "yuzu*.exe" | Copy-Item -destination $RELEASE_DIST |
|
|
Copy-Item .\license.txt -Destination $RELEASE_DIST |
|
|
Copy-Item .\license.txt -Destination $RELEASE_DIST |
|
|
Copy-Item .\README.md -Destination $RELEASE_DIST |
|
|
Copy-Item .\README.md -Destination $RELEASE_DIST |
|
|
7z a -tzip $MSVC_BUILD_ZIP $RELEASE_DIST\* |
|
|
7z a -tzip $MSVC_BUILD_ZIP $RELEASE_DIST\* |
|
|
@ -104,16 +104,14 @@ after_build: |
|
|
$env:BUILD_UPDATE = $MINGW_SEVENZIP |
|
|
$env:BUILD_UPDATE = $MINGW_SEVENZIP |
|
|
|
|
|
|
|
|
$CMAKE_SOURCE_DIR = "$env:APPVEYOR_BUILD_FOLDER" |
|
|
$CMAKE_SOURCE_DIR = "$env:APPVEYOR_BUILD_FOLDER" |
|
|
$CMAKE_BINARY_DIR = "$CMAKE_SOURCE_DIR/mingw_build" |
|
|
|
|
|
|
|
|
$CMAKE_BINARY_DIR = "$CMAKE_SOURCE_DIR/mingw_build/bin" |
|
|
$RELEASE_DIST = $RELEASE_DIST + "-mingw" |
|
|
$RELEASE_DIST = $RELEASE_DIST + "-mingw" |
|
|
|
|
|
|
|
|
mkdir $RELEASE_DIST |
|
|
mkdir $RELEASE_DIST |
|
|
mkdir $RELEASE_DIST/platforms |
|
|
mkdir $RELEASE_DIST/platforms |
|
|
|
|
|
|
|
|
# copy the compiled binaries and other release files to the release folder |
|
|
# copy the compiled binaries and other release files to the release folder |
|
|
Get-ChildItem "$CMAKE_BINARY_DIR" -Recurse -Filter "yuzu*.exe" | Copy-Item -destination $RELEASE_DIST |
|
|
|
|
|
# copy the libcurl dll |
|
|
|
|
|
Get-ChildItem "$CMAKE_BINARY_DIR" -Recurse -Filter "libcurl.dll" | Copy-Item -destination $RELEASE_DIST |
|
|
|
|
|
|
|
|
Get-ChildItem "$CMAKE_BINARY_DIR" -Filter "yuzu*.exe" | Copy-Item -destination $RELEASE_DIST |
|
|
Copy-Item -path "$CMAKE_SOURCE_DIR/license.txt" -destination $RELEASE_DIST |
|
|
Copy-Item -path "$CMAKE_SOURCE_DIR/license.txt" -destination $RELEASE_DIST |
|
|
Copy-Item -path "$CMAKE_SOURCE_DIR/README.md" -destination $RELEASE_DIST |
|
|
Copy-Item -path "$CMAKE_SOURCE_DIR/README.md" -destination $RELEASE_DIST |
|
|
# copy all the dll dependencies to the release folder |
|
|
# copy all the dll dependencies to the release folder |
|
|
@ -122,7 +120,7 @@ after_build: |
|
|
# QT dll dependencies |
|
|
# QT dll dependencies |
|
|
"libbz2-*.dll","libicudt*.dll","libicuin*.dll","libicuuc*.dll","libffi-*.dll", |
|
|
"libbz2-*.dll","libicudt*.dll","libicuin*.dll","libicuuc*.dll","libffi-*.dll", |
|
|
"libfreetype-*.dll","libglib-*.dll","libgobject-*.dll","libgraphite2.dll","libiconv-*.dll", |
|
|
"libfreetype-*.dll","libglib-*.dll","libgobject-*.dll","libgraphite2.dll","libiconv-*.dll", |
|
|
"libharfbuzz-*.dll","libintl-*.dll","libpcre-*.dll","libpcre16-*.dll","libpng16-*.dll", |
|
|
|
|
|
|
|
|
"libharfbuzz-*.dll","libintl-*.dll","libpcre-*.dll","libpcre2-16-*.dll","libpcre16-*.dll","libpng16-*.dll", |
|
|
# Runtime/Other dependencies |
|
|
# Runtime/Other dependencies |
|
|
"libgcc_s_seh-*.dll","libstdc++-*.dll","libwinpthread-*.dll","SDL2.dll","zlib1.dll" |
|
|
"libgcc_s_seh-*.dll","libstdc++-*.dll","libwinpthread-*.dll","SDL2.dll","zlib1.dll" |
|
|
foreach ($file in $MingwDLLs) { |
|
|
foreach ($file in $MingwDLLs) { |
|
|
@ -165,7 +163,7 @@ deploy: |
|
|
provider: GitHub |
|
|
provider: GitHub |
|
|
release: $(appveyor_repo_tag_name) |
|
|
release: $(appveyor_repo_tag_name) |
|
|
auth_token: |
|
|
auth_token: |
|
|
secure: "dbpsMC/MgPKWFNJCXpQl4cR8FYhepkPLjgNp/pRMktZ8oLKTqPYErfreaIxb/4P1" |
|
|
|
|
|
|
|
|
secure: "argb6oi2TYLB4wDy+HoCC8PuGAmsnocSk12CQ5614XAPO+NVPndlkLv1utnDFfg2" |
|
|
artifact: update,build |
|
|
artifact: update,build |
|
|
draft: false |
|
|
draft: false |
|
|
prerelease: false |
|
|
prerelease: false |
|
|
|