mirror of
https://github.com/Nutomic/ibis.git
synced 2025-02-04 21:54:40 +00:00
remove service
This commit is contained in:
parent
7e4102bba7
commit
642f562f87
1 changed files with 8 additions and 9 deletions
|
@ -32,8 +32,6 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- cargo run -- --print-config > config/defaults_current.toml
|
- cargo run -- --print-config > config/defaults_current.toml
|
||||||
- diff config/defaults.toml config/defaults_current.toml
|
- diff config/defaults.toml config/defaults_current.toml
|
||||||
- echo $CARGO_HOME
|
|
||||||
- ls -lah .cargo_home
|
|
||||||
|
|
||||||
ignored_files:
|
ignored_files:
|
||||||
image: alpine:3
|
image: alpine:3
|
||||||
|
@ -59,6 +57,14 @@ steps:
|
||||||
- diesel print-schema --config-file=diesel.toml > tmp.schema
|
- diesel print-schema --config-file=diesel.toml > tmp.schema
|
||||||
- diff tmp.schema src/backend/database/schema.rs
|
- diff tmp.schema src/backend/database/schema.rs
|
||||||
|
|
||||||
|
cargo_clippy:
|
||||||
|
image: *rust_image
|
||||||
|
environment:
|
||||||
|
CARGO_HOME: .cargo_home
|
||||||
|
commands:
|
||||||
|
- rustup component add clippy
|
||||||
|
- cargo clippy --tests --all-targets --all-features
|
||||||
|
|
||||||
cargo_test:
|
cargo_test:
|
||||||
image: *rust_image
|
image: *rust_image
|
||||||
environment:
|
environment:
|
||||||
|
@ -97,10 +103,3 @@ steps:
|
||||||
from_secret: github_token
|
from_secret: github_token
|
||||||
when:
|
when:
|
||||||
- event: tag
|
- event: tag
|
||||||
|
|
||||||
services:
|
|
||||||
database:
|
|
||||||
image: postgres:15.2-alpine
|
|
||||||
environment:
|
|
||||||
POSTGRES_USER: ibis
|
|
||||||
POSTGRES_PASSWORD: password
|
|
||||||
|
|
Loading…
Reference in a new issue