mirror of https://github.com/AMT-Cheif/drift.git
Make sure libsqlite3.so is available for CI tests
This commit is contained in:
parent
623f3212a1
commit
82a6fd9f2d
|
@ -1,6 +1,6 @@
|
|||
# Run tasks with the dart SDK installed by default
|
||||
container:
|
||||
image: "google/dart:latest"
|
||||
dockerfile: tool/Dockerfile
|
||||
|
||||
# We're currently not running tests with coverage because the free cirrus containers run out of memory :(
|
||||
|
||||
|
|
|
@ -26,7 +26,6 @@ dev_dependencies:
|
|||
build_test: ^0.10.8
|
||||
test: ^1.9.0
|
||||
mockito: ^4.1.0
|
||||
grinder: ^0.8.3
|
||||
|
||||
dependency_overrides:
|
||||
moor_generator:
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
FROM google/dart:latest
|
||||
|
||||
RUN apt-get update && apt-get install -y -q libsqlite3-dev
|
|
@ -1,7 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
pushd extras/coverage_formatting
|
||||
pub upgrade
|
||||
pub upgrade --no-precompile
|
||||
popd
|
||||
|
||||
dart extras/coverage_formatting/bin/coverage.dart
|
||||
|
|
Loading…
Reference in New Issue