Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit df395f8

Browse files
committed
Oops again [ci skip]
1 parent 840b2c1 commit df395f8

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

appveyor.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ install:
5555
- ps: Start-FileDownload 'https://bintray.com/artifact/download/vszakats/generic/curl-7.59.0-win32-mingw.zip'
5656
- 7z x curl-7.59.0-win32-mingw.zip
5757
# ???
58-
- cd curl-7.59.0-win32-mingw\lib && rename libcurl.dll.a libcurl.lib && cd ..\..
58+
- rename curl-7.59.0-win32-mingw\lib\libcurl.dll.a libcurl.lib
59+
# ??? again
60+
- ps: Start-FileDownload 'https://skanthak.homepage.t-online.de/download/curl-7.59.0.cab'
61+
- 7z x curl-7.59.0.cab
62+
- copy /y I386\LIBCURL.DLL curl-7.59.0-win32-mingw\bin\libcurl.dll
5963
- set PATH=%APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\include;%APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\lib;%PATH%
6064
# zlib...
6165
- ps: Start-FileDownload 'http://www.zlib.net/zlib1211.zip'
@@ -94,6 +98,7 @@ install:
9498
# - set LUA_INCLUDE_DIR=%APPVEYOR_BUILD_FOLDER%\lua-5.2.4\src
9599
# now we try to package 3rdparty libraries, for simplicity we put the header and binary together
96100
- set BINSUFFIX=%PLATFORM%-%VSVERSION%-%CONFIGURATION%
101+
- cd /d %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\include
97102
- echo %APPVEYOR_BUILD_FOLDER%\SDL_gfx-2.0.26\build\%CONFIGURATION%\*.dll > lst.txt
98103
- echo %APPVEYOR_BUILD_FOLDER%\SDL_gfx-2.0.26\build\%CONFIGURATION%\*.lib >> lst.txt
99104
- echo %APPVEYOR_BUILD_FOLDER%\SDL_gfx-2.0.26\build\%CONFIGURATION%\*.pdb >> lst.txt
@@ -123,10 +128,12 @@ install:
123128
- echo %APPVEYOR_BUILD_FOLDER%\SDL_mixer-1.2.12\lib\x86\*.lib >> lst.txt
124129
- echo %APPVEYOR_BUILD_FOLDER%\SDL_mixer-1.2.12\include\*.h >> lst.txt
125130
- echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\bin\*.dll >> lst.txt
126-
- echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\bin\*.crt >> lst.txt
131+
# - echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\bin\*.crt >> lst.txt
127132
- echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\lib\*.lib >> lst.txt
128-
- echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\include\*.h >> lst.txt
129-
- 7z a -t7z -mx=9 "3rdparty-%BINSUFFIX%.7z" @lst.txt
133+
- echo curl\*.h >> lst.txt
134+
- 7z a -t7z -mx=9 temp.7z @lst.txt
135+
- move temp.7z "%APPVEYOR_BUILD_FOLDER%\3rdparty-%BINSUFFIX%.7z"
136+
- cd /d %APPVEYOR_BUILD_FOLDER%
130137
artifacts:
131138
- path: '3rdparty-$(BINSUFFIX).7z'
132139
- path: 'binonly-$(BINSUFFIX).7z'
@@ -148,6 +155,6 @@ after_build:
148155
- echo %APPVEYOR_BUILD_FOLDER%\SDL_ttf-2.0.11\lib\x86\*.dll >> lst.txt
149156
- echo %APPVEYOR_BUILD_FOLDER%\SDL_mixer-1.2.12\lib\x86\*.dll >> lst.txt
150157
- echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\bin\*.dll >> lst.txt
151-
- echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\bin\*.crt >> lst.txt
158+
# - echo %APPVEYOR_BUILD_FOLDER%\curl-7.59.0-win32-mingw\bin\*.crt >> lst.txt
152159
- echo %APPVEYOR_BUILD_FOLDER%\build\%CONFIGURATION%\*.exe >> lst.txt
153160
- 7z a -t7z -mx=9 "binonly-%BINSUFFIX%.7z" @lst.txt

0 commit comments

Comments
 (0)