-
Notifications
You must be signed in to change notification settings - Fork 69
96 lines (84 loc) · 2.52 KB
/
build-and-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: CI tests
on:
- push
- pull_request
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
go:
- '1.13'
- stable
os:
- ubuntu-20.04
- ubuntu-22.04
- ubuntu-24.04
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Setup dependencies
run: |
sudo add-apt-repository ppa:dqlite/dev -y
sudo apt update
sudo apt install -y libsqlite3-dev libuv1-dev liblz4-dev libdqlite-dev
- name: Download deps
run: |
go get -t -tags libsqlite3 ./...
- name: Go vet
run: |
go vet -tags libsqlite3 ./...
- name: Staticcheck
uses: dominikh/staticcheck-action@v1
with:
version: '2024.1.1'
# staticcheck doesn't build with our minimum supported Go version.
#install-go: false
build-tags: libsqlite3
- name: Test
env:
GO_DQLITE_MULTITHREAD: 1
run: |
go test -v -tags libsqlite3 -race -coverprofile=coverage.out ./...
go test -v -tags nosqlite3 ./...
VERBOSE=1 ./test/dqlite-demo.sh
VERBOSE=1 ./test/roles.sh
VERBOSE=1 ./test/recover.sh
- name: Coverage
uses: coverallsapp/github-action@v2
with:
file: coverage.out
parallel: true
- name: Benchmark
env:
GO_DQLITE_MULTITHREAD: 1
run: |
go install -tags libsqlite3 github.com/canonical/go-dqlite/cmd/dqlite-benchmark
dqlite-benchmark --db 127.0.0.1:9001 --driver --cluster 127.0.0.1:9001,127.0.0.1:9002,127.0.0.1:9003 --workload kvreadwrite &
masterpid=$!
dqlite-benchmark --db 127.0.0.1:9002 --join 127.0.0.1:9001 &
dqlite-benchmark --db 127.0.0.1:9003 --join 127.0.0.1:9001 &
wait $masterpid
echo "Write results:"
head -n 5 /tmp/dqlite-benchmark/127.0.0.1:9001/results/0-exec-*
echo ""
echo "Read results:"
head -n 5 /tmp/dqlite-benchmark/127.0.0.1:9001/results/0-query-*
- uses: actions/upload-artifact@v3
with:
name: dqlite-benchmark-${{ matrix.os }}-${{ matrix.go }}
path: /tmp/dqlite-benchmark/127.0.0.1:9001/results/*
finish:
needs: build-and-test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Finish coverage
uses: coverallsapp/github-action@v2
with:
parallel-finished: true