1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-11-26 12:21:09 +00:00
ibis/.woodpecker.yml

63 lines
1.8 KiB
YAML
Raw Normal View History

2024-01-26 10:28:40 +00:00
variables:
- &rust_image "rust:1.75"
2024-01-25 16:03:36 +00:00
2024-01-26 10:28:40 +00:00
steps:
2024-01-26 11:29:36 +00:00
cargo_test:
image: *rust_image
environment:
LEMMY_DATABASE_URL: postgres://ibis:password@database:5432/ibis
CARGO_HOME: .cargo_home
commands:
2024-01-26 11:31:10 +00:00
- which cargo
2024-01-26 11:29:36 +00:00
- apt-get update
- apt-get install postgresql sudo -y --no-install-recommends --no-install-suggests
2024-01-26 11:49:50 +00:00
- adduser testuser
2024-01-26 11:50:45 +00:00
- cp -r /usr/local/cargo/bin .
2024-01-26 11:40:57 +00:00
- chown testuser:testuser . -R
2024-01-26 11:49:50 +00:00
- pwd
2024-01-26 11:51:48 +00:00
- export PATH="/usr/lib/postgresql/15/bin:/woodpecker/src/github.com/Nutomic/ibis/bin:$PATH"
- ls -la bin
2024-01-26 11:56:28 +00:00
- sudo -u testuser "PATH=$PATH" env | /bin/grep PATH
- sudo -u testuser "PATH=$PATH" cargo test --no-fail-fast
2024-01-26 11:29:36 +00:00
2024-01-25 16:03:36 +00:00
cargo_fmt:
2024-01-26 10:28:40 +00:00
image: *rust_image
2024-01-25 16:03:36 +00:00
environment:
# store cargo data in repo folder so that it gets cached between steps
CARGO_HOME: .cargo_home
commands:
2024-01-25 16:05:24 +00:00
- rustup component add rustfmt
2024-01-25 16:03:36 +00:00
- cargo fmt -- --check
frontend_wasm_build:
2024-01-26 10:28:40 +00:00
image: *rust_image
2024-01-25 16:03:36 +00:00
environment:
CARGO_HOME: .cargo_home
commands:
- "rustup target add wasm32-unknown-unknown"
- "cargo check --target wasm32-unknown-unknown --features csr,hydrate --no-default-features"
check_diesel_schema:
image: willsquire/diesel-cli
environment:
CARGO_HOME: .cargo_home
DATABASE_URL: postgres://ibis:password@database:5432/ibis
commands:
- diesel migration run
- diesel print-schema --config-file=diesel.toml > tmp.schema
- diff tmp.schema src/backend/database/schema.rs
cargo_clippy:
2024-01-26 10:28:40 +00:00
image: *rust_image
2024-01-25 16:03:36 +00:00
environment:
CARGO_HOME: .cargo_home
commands:
2024-01-26 10:07:49 +00:00
- rustup component add clippy
2024-01-25 16:03:36 +00:00
- cargo clippy --tests --all-targets --all-features
services:
database:
image: postgres:15.2-alpine
environment:
POSTGRES_USER: ibis
POSTGRES_PASSWORD: password