File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed
Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1515 - run : dart pub get
1616 - run : dart format --output=none --set-exit-if-changed .
1717 - run : dart analyze
18- - run : dart test
18+
19+ test :
20+ runs-on : ubuntu-latest
21+ strategy :
22+ matrix :
23+ include :
24+ - sqlite_version : " 3410100"
25+ sqlite_url : " https://www.sqlite.org/2023/sqlite-autoconf-3410100.tar.gz"
26+ - sqlite_version : " 3380000"
27+ sqlite_url : " https://www.sqlite.org/2022/sqlite-autoconf-3380000.tar.gz"
28+ steps :
29+ - uses : actions/checkout@v3
30+ - uses : dart-lang/setup-dart@v1
31+
32+ - name : Install dependencies
33+ run : dart pub get
34+
35+ - name : Install SQLite
36+ run : ./scripts/install_sqlite.sh ${{ matrix.sqlite_version }} ${{ matrix.sqlite_url }}
37+
38+ - name : Run Tests
39+ run : |
40+ export LD_LIBRARY_PATH=./sqlite-autoconf-${{ matrix.sqlite_version }}/.libs
41+ dart test
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ VERSION=$1
4+ URL=$2
5+
6+ wget $URL
7+ tar xzf sqlite-autoconf-$VERSION .tar.gz
8+
9+ cd sqlite-autoconf-$VERSION
10+ ./configure
11+ make
You can’t perform that action at this time.
0 commit comments