-
-
Notifications
You must be signed in to change notification settings - Fork 12
136 lines (115 loc) · 3.91 KB
/
ci.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
PQ_DSN: postgres://postgres:root@localhost/
jobs:
lint_fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- name: Check formating
run: cargo fmt -- --check
lint_clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- name: Run clippy
run: cargo clippy --all-features -- --deny warnings
tests:
name: Tests
strategy:
matrix:
rust: ["stable", "beta", "nightly"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
pg: ["10", "11", "12", "13", "14", "15", "16"]
mode: ["debug", "release"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- uses: ikalnytskyi/action-setup-postgres@v6
with:
username: postgres
password: root
postgres-version: ${{ matrix.pg }}
- name: Sets feature variable
shell: bash
run: |
if [[ ${{ matrix.pg }} -ge 14 ]]
then
echo "feature=v14" >> $GITHUB_ENV
elif [[ ${{ matrix.pg }} -ge 11 ]]
then
echo "feature=v$(echo ${{ matrix.pg }} | sed 's/\./_/')" >> $GITHUB_ENV
else
echo "feature=default" >> $GITHUB_ENV
fi
- name: Rustup update
run: rustup update
- name: Run tests (debug)
if: matrix.mode == 'debug'
run: cargo test --workspace --features "${{ env.feature }}"
- name: Run tests (release)
if: matrix.mode == 'release'
run: cargo test --workspace --features "${{ env.feature }}" --release
valgrind:
name: Memory check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Install postgreSQL (Linux)
run: |
sudo apt-get update
sudo apt-get install -y libpq-dev postgresql valgrind
sudo service postgresql start && sleep 3
sudo -u postgres psql --command "ALTER USER postgres PASSWORD 'root';"
- name: build
run: cargo test --no-run --features v14
- name: valgrind
run: valgrind --leak-check=full --error-exitcode=1 $(find target/debug/deps -executable -type f -name 'libpq-*')
mimalloc:
name: Allocation check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- name: Install postgreSQL (Linux)
run: |
sudo apt-get update
sudo apt-get install -y libpq-dev postgresql valgrind
sudo service postgresql start && sleep 3
sudo -u postgres psql --command "ALTER USER postgres PASSWORD 'root';"
- name: Adds mimalloc
run: |
cargo add mimalloc
sed -i '2 s/^/#[global_allocator] static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;\n/' src/lib.rs
- name: build
run: cargo test --no-run --all-features
- name: valgrind
run: valgrind --leak-check=full --error-exitcode=1 $(find target/debug/deps -executable -type f -name 'libpq-*')
arm:
name: Compilation on ARM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with:
targets: arm-unknown-linux-gnueabihf
- name: install
run: |
sudo apt-get update
sudo apt-get install -y curl git build-essential
sudo apt-get install -y libc6-armhf-cross libc6-dev-armhf-cross gcc-arm-linux-gnueabihf clang
- name: build
run: cargo build --all-features --target arm-unknown-linux-gnueabihf