fix: Build Linux CI

This commit is contained in:
Christian Pauly 2020-10-06 16:31:52 +02:00
commit 1f3f535b58
3 changed files with 12 additions and 51 deletions

View file

@ -1,37 +0,0 @@
name: fluffychat
version: 0.1.0
summary: Chat with your friends.
description: Chat with your friends.
icon: assets/logo.png
confinement: strict
base: core18
grade: stable
apps:
fluffychat:
command: fluffychat
extensions: [flutter-dev]
plugs:
- network
- home
parts:
olm:
source: .
source-type: git
plugin: cmake
build-packages:
- build-essential
stage-packages:
- libsqlite3-0
override-build: |
if cd olm; then git pull; else git clone https://gitlab.matrix.org/matrix-org/olm.git; fi
cd olm
cmake . -Bbuild
cmake --build build
sudo make install
fluffychat:
source: .
plugin: flutter
flutter-target: lib/main.dart
after: [olm]