Merge branch 'ChristianPauly-master-patch-03593' into 'master'

Fix CI

See merge request famedly/famedlysdk!283
This commit is contained in:
Christian Pauly 2020-05-09 13:24:14 +00:00
commit 05c99d2b04
1 changed files with 12 additions and 4 deletions

View File

@ -27,13 +27,21 @@ coverage:
- su -c ./test.sh test
coverage_without_olm:
image: cirrusci/flutter
image: debian:testing
stage: coverage
coverage: '/^\s+lines.+: (\d+.\d*%)/'
dependencies: []
script:
- flutter pub get
- flutter pub run test
script:
- apt update
- apt install -y curl git
- curl https://storage.googleapis.com/dart-archive/channels/stable/release/2.7.2/linux_packages/dart_2.7.2-1_amd64.deb > dart.deb
- apt install -y ./dart.deb
- ln -s /usr/lib/dart/bin/pub /usr/bin/
- useradd -m test
- chown -R 'test:' '.'
- chmod +x ./test.sh
- pub get
- pub run test
code_analyze:
image: cirrusci/flutter