@@ -39,25 +39,25 @@ jobs:
39
39
40
40
# check w/deny warnings in sqlx-core: async-std
41
41
- working-directory : sqlx-core
42
- run : cargo rustc --no-default-features --features 'chrono uuid postgres mysql tls runtime-async-std' -- -D warnings --emit=metadata
42
+ run : cargo rustc --no-default-features --features 'bigdecimal_bigint chrono uuid postgres mysql tls runtime-async-std' -- -D warnings --emit=metadata
43
43
44
44
# check w/deny warnings in sqlx-core: tokio
45
45
# `cargo rustc -p sqlx-core` ignores `--no-default-features` and builds with `runtime-async-std` anyway
46
46
# https://github.com/rust-lang/cargo/issues/5364
47
47
- working-directory : sqlx-core
48
- run : cargo rustc --no-default-features --features 'chrono uuid postgres mysql tls runtime-tokio' -- -D warnings --emit=metadata
48
+ run : cargo rustc --no-default-features --features 'bigdecimal_bigint chrono uuid postgres mysql tls runtime-tokio' -- -D warnings --emit=metadata
49
49
50
50
# check w/deny warnings: async-std
51
- - run : cargo rustc --no-default-features --features 'chrono uuid postgres mysql macros tls runtime-async-std' -- -D warnings --emit=metadata
51
+ - run : cargo rustc --no-default-features --features 'bigdecimal chrono uuid postgres mysql macros tls runtime-async-std' -- -D warnings --emit=metadata
52
52
53
53
# check w/deny warnings: tokio
54
- - run : cargo rustc --no-default-features --features 'chrono uuid postgres mysql macros tls runtime-tokio' -- -D warnings --emit=metadata
54
+ - run : cargo rustc --no-default-features --features 'bigdecimal chrono uuid postgres mysql macros tls runtime-tokio' -- -D warnings --emit=metadata
55
55
56
56
# unit test: async-std
57
- - run : cargo test --manifest-path sqlx-core/Cargo.toml --no-default-features --features 'chrono uuid postgres mysql tls runtime-async-std'
57
+ - run : cargo test --manifest-path sqlx-core/Cargo.toml --no-default-features --features 'bigdecimal chrono uuid postgres mysql tls runtime-async-std'
58
58
59
59
# unit test: tokio
60
- - run : cargo test --manifest-path sqlx-core/Cargo.toml --no-default-features --features 'chrono uuid postgres mysql tls runtime-tokio'
60
+ - run : cargo test --manifest-path sqlx-core/Cargo.toml --no-default-features --features 'bigdecimal chrono uuid postgres mysql tls runtime-tokio'
61
61
62
62
# integration test: sqlite + async-std
63
63
- run : cargo test --no-default-features --features 'runtime-async-std sqlite macros uuid chrono tls'
@@ -121,22 +121,22 @@ jobs:
121
121
# -----------------------------------------------------
122
122
123
123
# integration test: async-std
124
- - run : cargo test --no-default-features --features 'runtime-async-std postgres macros uuid chrono tls'
124
+ - run : cargo test --no-default-features --features 'runtime-async-std postgres macros uuid chrono bigdecimal tls'
125
125
env :
126
126
DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/postgres
127
127
128
128
# integration test: tokio
129
- - run : cargo test --no-default-features --features 'runtime-tokio postgres macros uuid chrono tls'
129
+ - run : cargo test --no-default-features --features 'runtime-tokio postgres macros uuid chrono bigdecimal tls'
130
130
env :
131
131
DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/postgres
132
132
133
133
# UI feature gate tests: async-std
134
- - run : cargo test --no-default-features --features 'runtime-async-std postgres macros tls'
134
+ - run : cargo test --no-default-features --features 'runtime-async-std postgres macros bigdecimal tls'
135
135
env :
136
136
DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/postgres
137
137
138
138
# UI feature gate tests: tokio
139
- - run : cargo test --no-default-features --features 'runtime-tokio postgres macros tls'
139
+ - run : cargo test --no-default-features --features 'runtime-tokio postgres macros bigdecimal tls'
140
140
env :
141
141
DATABASE_URL : postgres://postgres:postgres@localhost:${{ job.services.postgres.ports[5432] }}/postgres
142
142
0 commit comments