Skip to content
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1691 from reicast/skmp/remove-appv-mingw
Browse files Browse the repository at this point in the history
Remove MinGW build from appveyor
  • Loading branch information
skmp authored Jul 19, 2019
2 parents 29f95ee + 31009e3 commit a52af13
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ image: Visual Studio 2017

configuration:
- RelWithDebInfo
- fast

platform:
- x64
Expand All @@ -12,12 +11,6 @@ before_build:
- cmd: >-
if "%CONFIGURATION%"=="RelWithDebInfo" (set BUILD_PATH=build)
if "%CONFIGURATION%"=="fast" (set BUILD_PATH=reicast\linux)
set EXTRA_PATH=C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin\
set PATH=%EXTRA_PATH%;%PATH%
if not exist %BUILD_PATH% (mkdir %BUILD_PATH%)
if "%CONFIGURATION%"=="RelWithDebInfo" (cmake -B %BUILD_PATH% -G "Visual Studio 15 2017 Win64" -DCMAKE_CONFIGURATION_TYPES=RelWithDebInfo)
Expand All @@ -28,20 +21,15 @@ build_script:
- cmd: >-
if "%CONFIGURATION%"=="RelWithDebInfo" (msbuild reicast.sln /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll")
if "%CONFIGURATION%"=="fast" (mingw32-make platform=win32)
after_build:
- cmd: >-
if "%CONFIGURATION%"=="RelWithDebInfo" (cd .. && set EXE_PATH=build\RelWithDebInfo\reicast.exe)
if "%CONFIGURATION%"=="fast" (cd ..\.. && set EXE_PATH=reicast\linux\nosym-reicast.exe)
mkdir artifacts
move %EXE_PATH% artifacts\reicast-win_%PLATFORM%-%CONFIGURATION%-%APPVEYOR_REPO_COMMIT%.exe
if "%CONFIGURATION%"=="fast" (copy %EXTRA_PATH%\libgcc_s_seh-1.dll artifacts && copy %EXTRA_PATH%\libwinpthread-1.dll artifacts && copy %EXTRA_PATH%\libgomp-1.dll artifacts)
artifacts:
- path: artifacts
name: reicast-win_$(PLATFORM)-$(CONFIGURATION)-$(APPVEYOR_REPO_COMMIT)
Expand Down

0 comments on commit a52af13

Please sign in to comment.