Skip to content

Commit

Permalink
Attempt with appimage
Browse files Browse the repository at this point in the history
  • Loading branch information
jpcima committed Jul 10, 2020
1 parent 4107a4e commit f6dfd2e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ branches:
except:
- automatic

cache:
directories:
- download

matrix:
include:
- os: linux
Expand Down Expand Up @@ -53,11 +57,18 @@ matrix:
env:
- Build=linux64
script:
- mkdir build
- mkdir -p build/
- cd build
- cmake -DCMAKE_BUILD_TYPE=Release ..
- cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ..
- make -j$(nproc)
- cd ..
- mkdir -p download/
- wget -O {download/,https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/}linuxdeploy-x86_64.AppImage
- chmod +x download/linuxdeploy-x86_64.AppImage
- make -C build install DESTDIR="$(pwd)/target"
- download/linuxdeploy-x86_64.AppImage --appdir="$(pwd)/target" --output=appimage
- mkdir -p release/
- mv -vf *.AppImage release/
addons:
apt:
packages:
Expand Down

0 comments on commit f6dfd2e

Please sign in to comment.