mirror of
https://github.com/leozide/leocad
synced 2024-12-27 21:58:37 +01:00
86 lines
No EOL
3.1 KiB
YAML
86 lines
No EOL
3.1 KiB
YAML
version: '{branch}.{build}'
|
|
skip_tags: true
|
|
image:
|
|
- Ubuntu2004
|
|
- macos
|
|
- Visual Studio 2019
|
|
|
|
for:
|
|
- matrix:
|
|
only:
|
|
- image: Visual Studio 2019
|
|
configuration: Release
|
|
platform: x64
|
|
before_build:
|
|
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
|
|
- set PATH=C:\Qt\5.15.0\msvc2019_64\bin;%PATH%
|
|
- git rev-parse --short HEAD > version.txt
|
|
- set /p VERSION= < version.txt
|
|
- qmake -v
|
|
- qmake -tp vc
|
|
build:
|
|
project: leocad.vcxproj
|
|
verbosity: minimal
|
|
after_build:
|
|
- 7z a symbols.zip build\\release\\leocad.exe build\\release\\leocad.pdb
|
|
- if defined APPVEYOR_PULL_REQUEST_NUMBER appveyor exit
|
|
- mkdir appdir
|
|
- copy build\\release\\leocad.exe 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
|
|
- 7z e library.zip
|
|
- copy library.bin appdir\\library.bin
|
|
- appveyor DownloadFile https://github.com/leozide/povray/releases/download/continuous/povconsole32-sse2.exe -FileName appdir\\povconsole32-sse2.exe
|
|
- windeployqt appdir\\leocad.exe
|
|
- copy tools\\setup\\leocad.nsi .
|
|
- copy tools\\setup\\setup.ico .
|
|
- copy \"%VCToolsRedistDir%\\vcredist_x64.exe\" appdir
|
|
- \"C:\\Program Files (x86)\\NSIS\\makensis.exe\" /V4 /DX64 \"/XOutFile LeoCAD-Windows-%VERSION%.exe\" leocad.nsi"
|
|
artifacts:
|
|
- path: symbols.zip
|
|
name: symbols
|
|
- path: LeoCAD-Windows-$(VERSION).exe
|
|
name: leocad
|
|
|
|
- matrix:
|
|
only:
|
|
- image: Ubuntu2004
|
|
before_build:
|
|
- $HOME/Qt/latest/gcc_64/bin/qmake -v
|
|
- $HOME/Qt/latest/gcc_64/bin/qmake PREFIX=/usr -r
|
|
after_build:
|
|
- if defined APPVEYOR_PULL_REQUEST_NUMBER appveyor exit
|
|
- appveyor DownloadFile https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip -FileName library.zip
|
|
- unzip library.zip
|
|
- mkdir -p AppDir/usr/share/leocad
|
|
- mv library.bin AppDir/usr/share/leocad/library.bin
|
|
- appveyor DownloadFile https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
|
|
- chmod a+x linuxdeployqt*.AppImage
|
|
- unset QTDIR; unset QT_PLUGIN_PATH ; unset LD_LIBRARY_PATH
|
|
- export VERSION=$(git rev-parse --short HEAD)
|
|
- ./linuxdeployqt*.AppImage ./AppDir/usr/share/applications/*.desktop -bundle-non-qt-libs
|
|
- ./linuxdeployqt*.AppImage --appimage-extract
|
|
- export PATH=$(readlink -f ./squashfs-root/usr/bin/):$PATH
|
|
- ./squashfs-root/usr/bin/appimagetool AppDir/
|
|
- mv ./LeoCAD-$VERSION-x86_64.AppImage ./LeoCAD-Linux-$VERSION-x86_64.AppImage
|
|
|
|
- matrix:
|
|
only:
|
|
- image: macos
|
|
install:
|
|
- brew install qt5 grep;
|
|
- brew link --force qt5;
|
|
- wget https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip -O library.zip;
|
|
- unzip library.zip;
|
|
before_build:
|
|
- $HOME/Qt/latest/gcc_64/bin/qmake -v
|
|
- $HOME/Qt/latest/gcc_64/bin/qmake PREFIX=/usr -r
|
|
|
|
deploy:
|
|
- provider: GitHub
|
|
tag: continuous
|
|
description: Continuous build for commit $(appveyor_repo_commit)
|
|
auth_token:
|
|
secure: +EZPzYX4wUEc6MYg4kBLx9TogAqeeeWUPgtEW3VtAJATrBtxwpuOQIHrrR4hbc7a
|
|
artifact: LeoCAD-Windows-$(version).exe
|
|
force_update: true |