leocad/.travis.yml

119 lines
4.3 KiB
YAML
Raw Normal View History

2020-10-18 17:43:45 -07:00
language: cpp
2020-11-07 08:54:13 -08:00
jobs:
2020-10-18 17:43:45 -07:00
include:
- os: linux
2020-11-07 10:18:55 -08:00
name: Qt 4.8
2020-10-18 17:43:45 -07:00
dist: trusty
addons:
apt:
sources:
- sourceline: "ppa:beineri/opt-qt487-trusty"
packages:
- opt-qt4-qmake opt-qt4-dev-tools opt-libqt4-dev opt-libqt4-dev-bin opt-libqt4-opengl-dev
compiler: gcc
2020-11-07 10:28:32 -08:00
script:
- source /opt/qt*/bin/qt*-env.sh
- qmake PREFIX=/usr -v
- qmake PREFIX=/usr
- make -j$(nproc)
2020-11-07 10:18:55 -08:00
2020-10-18 17:43:45 -07:00
- os: linux
2020-11-07 10:18:55 -08:00
name: Linux amd64
2020-11-06 17:52:36 -08:00
dist: trusty
addons:
apt:
sources:
- sourceline: "ppa:beineri/opt-qt-5.10.1-trusty"
packages:
- qt510base
compiler: gcc
2020-11-07 10:28:32 -08:00
script:
- source /opt/qt*/bin/qt*-env.sh
- qmake PREFIX=/usr -v
- qmake PREFIX=/usr
- make -j$(nproc)
2020-11-07 10:18:55 -08:00
after_success:
- make install INSTALL_ROOT=AppDir
2020-11-07 10:54:23 -08:00
- wget https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip -O library.zip
- unzip library.zip
- mkdir -p AppDir/usr/share/leocad
- mv library.bin AppDir/usr/share/leocad/library.bin
2020-11-07 10:18:55 -08:00
- wget -c "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
2020-11-07 11:32:16 -08:00
- 'curl -s -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/repos/leozide/leocad/commits/master -o repo.txt'
2020-11-07 11:04:36 -08:00
- 'export REMOTE=$(grep -Po ''(?<=: \")(([a-z0-9])\w+)(?=\")'' -m 1 repo.txt)'
2020-11-07 10:28:32 -08:00
- export LOCAL=$(git rev-parse HEAD)
2020-11-07 11:32:16 -08:00
- if [[ "$REMOTE" != "$LOCAL" ]]; then echo "Build no longer current. $REMOTE vs $LOCAL - aborting upload."; exit 0; fi;
2020-11-07 10:18:55 -08:00
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- bash upload.sh LeoCAD*.AppImage*
2020-11-06 17:52:36 -08:00
- os: linux
2020-11-07 10:18:55 -08:00
name: Linux arm64
2020-11-06 17:52:36 -08:00
arch: arm64
2020-10-18 17:43:45 -07:00
dist: trusty
addons:
apt:
packages:
2020-11-06 18:11:29 -08:00
- qt5-default
2020-11-06 18:27:31 -08:00
- qtbase5-dev
2020-11-06 18:38:47 -08:00
- qttools5-dev-tools
2020-11-06 18:44:30 -08:00
- libqt5opengl5-dev
2020-11-07 13:42:52 -08:00
- zip
2020-10-18 17:43:45 -07:00
compiler: gcc
2020-11-07 10:28:32 -08:00
script:
2020-11-07 13:33:52 -08:00
- qmake -v
2020-11-07 10:28:32 -08:00
- qmake PREFIX=/usr
- make -j$(nproc)
2020-11-23 09:53:41 -08:00
after_success:
2020-11-07 13:33:52 -08:00
- cp build/release/leocad .
- export VERSION=$(git rev-parse --short HEAD)
- zip LeoCAD-Linux-$VERSION-arm64.zip leocad
- 'curl -s -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/repos/leozide/leocad/commits/master -o repo.txt'
- 'export REMOTE=$(grep -Po ''(?<=: \")(([a-z0-9])\w+)(?=\")'' -m 1 repo.txt)'
- export LOCAL=$(git rev-parse HEAD)
2020-11-23 09:53:41 -08:00
- if [[ "$REMOTE" != "$LOCAL" ]]; then echo "Build no longer current. $REMOTE vs $LOCAL - aborting upload."; travis_terminate 0; fi;
2020-11-07 13:33:52 -08:00
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- bash upload.sh LeoCAD*.zip
2020-11-07 10:28:32 -08:00
2020-11-07 10:37:14 -08:00
- os: osx
2020-11-07 09:04:39 -08:00
name: macOS
osx_image: xcode11
2020-10-18 17:43:45 -07:00
compiler: clang
2020-11-07 08:24:24 -08:00
addons:
homebrew:
packages:
- grep
- qt5
2020-11-07 08:45:31 -08:00
install:
2020-11-07 08:54:13 -08:00
- brew link --force qt5
- wget https://github.com/leozide/povray/releases/download/continuous/povray
- wget https://github.com/leozide/leocad/releases/download/v19.07.1/Library-Linux-14384.zip -O library.zip
- unzip library.zip
2020-11-07 10:18:55 -08:00
script:
- qmake -v
- qmake
- make -j$(sysctl -n hw.ncpu)
2020-11-23 09:53:41 -08:00
after_success:
2020-11-07 10:18:55 -08:00
- cd build/release
- macdeployqt LeoCAD.app -dmg
- mv LeoCAD.dmg LeoCAD-macOS-$(git rev-parse --short HEAD).dmg
2020-11-07 11:32:16 -08:00
- 'curl -s -H "Authorization: token $GITHUB_TOKEN" https://api.github.com/repos/leozide/leocad/commits/master -o repo.txt'
2020-11-07 11:04:36 -08:00
- 'export REMOTE=$(ggrep -Po ''(?<=: \")(([a-z0-9])\w+)(?=\")'' -m 1 repo.txt)'
2020-11-07 10:28:32 -08:00
- export LOCAL=$(git rev-parse HEAD)
2020-11-07 11:32:16 -08:00
- if [[ "$REMOTE" != "$LOCAL" ]]; then echo "Build no longer current. $REMOTE vs $LOCAL - aborting upload."; exit 0; fi;
2020-11-07 10:18:55 -08:00
- wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
- bash upload.sh LeoCAD*.dmg*
2020-10-18 17:43:45 -07:00
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)/