mirror of
https://github.com/leozide/leocad.git
synced 2026-07-28 04:07:11 +00:00
Update continuous.yml
This commit is contained in:
@@ -20,6 +20,42 @@ jobs:
|
||||
run: qmake PREFIX=/usr
|
||||
- name: Build
|
||||
run: make -j ${{ steps.cpu-cores.outputs.count }}
|
||||
- name: Install
|
||||
run: make install INSTALL_ROOT=AppDir
|
||||
- name: Cache Library
|
||||
uses: actions/cache@v3
|
||||
id: cache-library
|
||||
with:
|
||||
path: AppDir/usr/share/leocad/library.bin
|
||||
key: library-20.03
|
||||
- name: Download Library
|
||||
if: steps.cache-library.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget https://github.com/leozide/leocad/releases/download/v19.07.1/Library-20.03.zip -O library.zip
|
||||
unzip library.zip
|
||||
mkdir -p AppDir/usr/share/leocad
|
||||
mv library.bin AppDir/usr/share/leocad/library.bin
|
||||
- name: Create AppImage
|
||||
run: |
|
||||
cp qt/leocad.desktop AppDir/leocad.desktop
|
||||
cp tools/icon/256x256/apps/leocad.png AppDir/leocad.png
|
||||
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
|
||||
- name: Upload AppImage
|
||||
run: |
|
||||
'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)
|
||||
if [[ "$REMOTE" != "$LOCAL" ]]; then echo "Build no longer current. $REMOTE vs $LOCAL - aborting upload."; exit 0; fi;
|
||||
wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
||||
bash upload.sh LeoCAD*.AppImage*
|
||||
|
||||
build-macos:
|
||||
runs-on: macos-latest
|
||||
@@ -34,5 +70,27 @@ jobs:
|
||||
id: cpu-cores
|
||||
- name: Generate Makefile
|
||||
run: qmake PREFIX=/usr
|
||||
- name: Cache Library
|
||||
uses: actions/cache@v3
|
||||
id: cache-library
|
||||
with:
|
||||
path: library.bin
|
||||
key: library-20.03
|
||||
- name: Download Library
|
||||
if: steps.cache-library.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget https://github.com/leozide/leocad/releases/download/v19.07.1/Library-20.03.zip -O library.zip
|
||||
unzip library.zip
|
||||
- name: Cache POV-Ray
|
||||
uses: actions/cache@v3
|
||||
id: cache-povray
|
||||
with:
|
||||
path: povray
|
||||
key: povray-20.03
|
||||
- name: Download POV-Ray
|
||||
if: steps.cache-povray.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
wget https://github.com/leozide/povray/releases/download/continuous/povray
|
||||
chmod +x povray
|
||||
- name: Build
|
||||
run: make -j ${{ steps.cpu-cores.outputs.count }}
|
||||
|
||||
Reference in New Issue
Block a user