forked from scylladb/scylla-rust-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (84 loc) · 2.76 KB
/
examples.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
name: Examples
on:
push:
branches:
- main
- 'branch-*'
pull_request:
branches:
- main
- 'branch-*'
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
Examples:
runs-on: ubuntu-latest
timeout-minutes: 60
services:
scylladb:
image: scylladb/scylla-tls
ports:
- 9042:9042
- 9142:9142
options:
--health-cmd "cqlsh --debug"
--health-interval 5s
--health-retries 10
env:
working-directory: ./scylla
steps:
- uses: actions/checkout@v3
- name: Check
run: cargo check --verbose --features "ssl"
working-directory: ${{env.working-directory}}
- name: Run allocations example
run: cargo run --example allocations
- name: Run auth example
run: cargo run --example auth
- name: Run basic example
run: cargo run --example basic
# - name: Run cloud example
# run: cargo run --example cloud
# - name: Run compare-tokens example
# run: cargo run --example compare-tokens
- name: Run cql-time-types example
run: cargo run --example cql-time-types
- name: Run cqlsh-rs example
run: cargo run --example cqlsh-rs
# - name: Run custom_deserialization example
# run: cargo run --example custom_deserialization
- name: Run custom_load_balancing_policy example
run: cargo run --example custom_load_balancing_policy
- name: Run execution_profile example
run: cargo run --example execution_profile
- name: Run get_by_name example
run: cargo run --example get_by_name
- name: Run logging example
run: cargo run --example logging
- name: Run parallel-prepared example
run: cargo run --example parallel-prepared
- name: Run parallel example
run: cargo run --example parallel
- name: Run query_history example
run: cargo run --example query_history
- name: Run custom_load_balancing_policy example
run: cargo run --example custom_load_balancing_policy
- name: Run schema_agreement example
run: cargo run --example schema_agreement
- name: Run select-paging example
run: cargo run --example select-paging
- name: Run select-paging example
run: cargo run --example select-paging
- name: Run speculative-execution example
run: cargo run --example speculative-execution
- name: Run tls example
run: cargo run --example tls
- name: Run tower example
run: cargo run --example tower
- name: Run custom_load_balancing_policy example
run: cargo run --example custom_load_balancing_policy
- name: Run user-defined-type example
run: cargo run --example user-defined-type
- name: Run value_list example
run: cargo run --example value_list