mirror of
https://github.com/leozide/leocad
synced 2024-12-27 21:58:37 +01:00
Update appveyor.yml
This commit is contained in:
parent
beeb7190dc
commit
dfec73e5ca
1 changed files with 15 additions and 11 deletions
26
appveyor.yml
26
appveyor.yml
|
@ -22,20 +22,20 @@ for:
|
||||||
project: leocad.vcxproj
|
project: leocad.vcxproj
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
after_build:
|
after_build:
|
||||||
- 7z a symbols.zip build\\release\\leocad.exe build\\release\\leocad.pdb
|
- 7z a symbols.zip build\release\leocad.exe build\release\leocad.pdb
|
||||||
- if defined APPVEYOR_PULL_REQUEST_NUMBER appveyor exit
|
- if defined APPVEYOR_PULL_REQUEST_NUMBER appveyor exit
|
||||||
- mkdir appdir
|
- mkdir appdir
|
||||||
- copy build\\release\\leocad.exe appdir
|
- copy build\release\leocad.exe appdir
|
||||||
- copy docs\\readme.txt appdir
|
- copy docs\readme.txt appdir
|
||||||
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip -FileName library.zip
|
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip -FileName library.zip
|
||||||
- 7z e library.zip
|
- 7z e library.zip
|
||||||
- copy library.bin appdir\\library.bin
|
- copy library.bin appdir\library.bin
|
||||||
- appveyor DownloadFile https://github.com/leozide/povray/releases/download/continuous/povconsole32-sse2.exe -FileName appdir\\povconsole32-sse2.exe
|
- appveyor DownloadFile https://github.com/leozide/povray/releases/download/continuous/povconsole32-sse2.exe -FileName appdir\povconsole32-sse2.exe
|
||||||
- windeployqt appdir\\leocad.exe
|
- windeployqt appdir\leocad.exe
|
||||||
- copy tools\\setup\\leocad.nsi .
|
- copy tools\setup\leocad.nsi .
|
||||||
- copy tools\\setup\\setup.ico .
|
- copy tools\setup\setup.ico .
|
||||||
- copy \"%VCToolsRedistDir%\\vcredist_x64.exe\" appdir
|
- copy "%VCToolsRedistDir%\vcredist_x64.exe" appdir
|
||||||
- \"C:\\Program Files (x86)\\NSIS\\makensis.exe\" /V4 /DX64 \"/XOutFile LeoCAD-Windows-%VERSION%.exe\" leocad.nsi"
|
- "C:\Program Files (x86)\NSIS\makensis.exe" /V4 /DX64 "/XOutFile LeoCAD-Windows-%VERSION%.exe" leocad.nsi
|
||||||
artifacts:
|
artifacts:
|
||||||
- path: symbols.zip
|
- path: symbols.zip
|
||||||
name: symbols
|
name: symbols
|
||||||
|
@ -73,7 +73,7 @@ for:
|
||||||
install:
|
install:
|
||||||
- brew install qt5 grep;
|
- brew install qt5 grep;
|
||||||
- brew link --force qt5;
|
- brew link --force qt5;
|
||||||
- wget https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip -O library.zip;
|
- curl -o library.zip https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip;
|
||||||
- unzip library.zip;
|
- unzip library.zip;
|
||||||
before_build:
|
before_build:
|
||||||
- qmake -v
|
- qmake -v
|
||||||
|
@ -81,6 +81,10 @@ for:
|
||||||
build_script:
|
build_script:
|
||||||
- qmake -r
|
- qmake -r
|
||||||
- make
|
- make
|
||||||
|
after_build:
|
||||||
|
- cd build/release
|
||||||
|
- macdeployqt LeoCAD.app -dmg
|
||||||
|
- mv LeoCAD.dmg LeoCAD-macOS-$(git rev-parse --short HEAD).dmg
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
- provider: GitHub
|
- provider: GitHub
|
||||||
|
|
Loading…
Reference in a new issue