This repository has been archived by the owner on Sep 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
189 lines (178 loc) · 4.78 KB
/
pull-requests.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
name: Pull Requests
on:
pull_request:
branches: [ main ]
env:
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: 1
defaults:
run:
shell: bash
jobs:
cargo-deny:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: EmbarkStudios/cargo-deny-action@v1
rustfmt:
needs: cargo-deny
name: rustfmt
runs-on: ubuntu-latest
steps:
- name: set up rust toolchain
uses: hecrj/setup-rust-action@v1
with:
components: rustfmt
rust-version: nightly
- name: checkout code
uses: actions/checkout@v2
- name: check code formatting
run: cargo fmt --all -- --check
clippy:
needs:
- cargo-deny
- rustfmt
name: clippy
runs-on: ubuntu-latest
steps:
- name: set up rust toolchain
uses: hecrj/setup-rust-action@v1
with:
components: clippy
rust-version: stable
- name: checkout code
uses: actions/checkout@v2
- name: install LLVM and Clang build dependencies for pg-sql-parser
run: sudo apt install -y llvm
- name: check code style
run: cargo clippy --all-targets --all-features --all -- -D warnings
tests:
needs:
- cargo-deny
- rustfmt
- clippy
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: install LLVM and Clang build dependencies for pg-sql-parser
run: sudo apt install -y llvm
- name: install tarpaulin
uses: actions-rs/install@v0.1
with:
crate: cargo-tarpaulin
version: 0.16.0
use-tool-cache: true
- name: run code coverage
run: cargo tarpaulin --all --ignore-tests -o Lcov --output-dir ./coverage -- --test-threads 1
- name: upload to coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
compatibility-test:
needs:
- cargo-deny
- rustfmt
- clippy
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13.0
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5433:5432
steps:
- name: set-up-rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- name: set-up-java
uses: actions/setup-java@v1
with:
java-version: 8
- name: checkout code
uses: actions/checkout@v2
- name: install LLVM and Clang build dependencies for pg-sql-parser
run: sudo apt install -y llvm
- name: start-database
run: cargo run & cargo build && sleep 1
- name: run-tests
uses: eskatos/gradle-command-action@v1
with:
arguments: :compatibility:clean :compatibility:test -Dci=true
ssl-mode-test:
needs:
- cargo-deny
- rustfmt
- clippy
runs-on: ubuntu-latest
env:
PFX_CERTIFICATE_FILE: 'tests/fixtures/identity.pfx'
PFX_CERTIFICATE_PASSWORD: 'password'
services:
postgres:
image: postgres:13.0
env:
POSTGRES_PASSWORD: postgres
POSTGRES_USER: postgres
POSTGRES_DB: test
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5433:5432
steps:
- name: set-up-rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
- name: set-up-java
uses: actions/setup-java@v1
with:
java-version: 8
- name: checkout code
uses: actions/checkout@v2
- name: install LLVM and Clang build dependencies for pg-sql-parser
run: sudo apt install -y llvm
- name: start-database
run: cargo run & cargo build && sleep 1
- name: run tests with ssl mode
uses: eskatos/gradle-command-action@v1
with:
arguments: :ssl_mode:clean :ssl_mode:test -Dci=true
- name: run tests without ssl mode
uses: eskatos/gradle-command-action@v1
with:
arguments: :compatibility:clean :compatibility:test -Dci=true
ci-success:
name: ci
if: github.event_name == 'push' && success()
needs:
- tests
- rustfmt
- clippy
runs-on: ubuntu-latest
steps:
- name: Mark the job as a success
run: exit 0
ci-failure:
name: ci
if: github.event_name == 'push' && !success()
needs:
- tests
- rustfmt
- clippy
runs-on: ubuntu-latest
steps:
- name: Mark the job as a failure
run: exit 1