1
0
Fork 0
mirror of https://github.com/Nutomic/ibis.git synced 2024-11-22 15:11:09 +00:00

Fixing woodpecker. (#42)

This commit is contained in:
Dessalines 2024-04-02 05:43:45 -04:00 committed by GitHub
parent 06f3340d20
commit 2fa6150a85
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,7 +2,6 @@ variables:
- &rust_image "rust:1.75" - &rust_image "rust:1.75"
steps: steps:
cargo_fmt: cargo_fmt:
image: rustlang/rust:nightly image: rustlang/rust:nightly
environment: environment:
@ -11,7 +10,8 @@ steps:
commands: commands:
- rustup component add rustfmt - rustup component add rustfmt
- cargo +nightly fmt -- --check - cargo +nightly fmt -- --check
when:
- event: pull_request
check_config_defaults_updated: check_config_defaults_updated:
image: *rust_image image: *rust_image
@ -20,6 +20,8 @@ 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
when:
- event: pull_request
ignored_files: ignored_files:
image: alpine:3 image: alpine:3
@ -27,6 +29,8 @@ steps:
- apk add git - apk add git
- IGNORED=$(git ls-files --cached -i --exclude-standard) - IGNORED=$(git ls-files --cached -i --exclude-standard)
- if [[ "$IGNORED" ]]; then echo "Ignored files present:\n$IGNORED\n"; exit 1; fi - if [[ "$IGNORED" ]]; then echo "Ignored files present:\n$IGNORED\n"; exit 1; fi
when:
- event: pull_request
check_diesel_schema: check_diesel_schema:
image: willsquire/diesel-cli image: willsquire/diesel-cli
@ -37,6 +41,8 @@ steps:
- diesel migration run - diesel migration run
- 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
when:
- event: pull_request
frontend_wasm_build: frontend_wasm_build:
image: *rust_image image: *rust_image
@ -45,6 +51,8 @@ steps:
commands: commands:
- "rustup target add wasm32-unknown-unknown" - "rustup target add wasm32-unknown-unknown"
- "cargo check --target wasm32-unknown-unknown --features csr,hydrate --no-default-features" - "cargo check --target wasm32-unknown-unknown --features csr,hydrate --no-default-features"
when:
- event: pull_request
cargo_clippy: cargo_clippy:
image: *rust_image image: *rust_image
@ -53,6 +61,8 @@ steps:
commands: commands:
- rustup component add clippy - rustup component add clippy
- cargo clippy --tests --all-targets --all-features - cargo clippy --tests --all-targets --all-features
when:
- event: pull_request
cargo_test: cargo_test:
image: *rust_image image: *rust_image
@ -69,6 +79,8 @@ steps:
- chown testuser:testuser /home/testuser -R - chown testuser:testuser /home/testuser -R
- export PATH="/usr/lib/postgresql/15/bin:/usr/local/cargo/bin:$PATH" - export PATH="/usr/lib/postgresql/15/bin:/usr/local/cargo/bin:$PATH"
- sudo -u testuser env "PATH=$PATH" cargo test --no-fail-fast - sudo -u testuser env "PATH=$PATH" cargo test --no-fail-fast
when:
- event: pull_request
build_release: build_release:
image: *rust_image image: *rust_image
@ -82,7 +94,7 @@ steps:
- export PATH="$PATH:$(pwd)/.cargo_home/bin/" - export PATH="$PATH:$(pwd)/.cargo_home/bin/"
- ./scripts/build_release.sh - ./scripts/build_release.sh
when: when:
event: tag - event: tag
publish_release: publish_release:
image: woodpeckerci/plugin-github-release image: woodpeckerci/plugin-github-release
@ -93,11 +105,11 @@ steps:
api-key: api-key:
from_secret: github_token from_secret: github_token
when: when:
event: tag - event: tag
services: services:
database: database:
image: postgres:15.2-alpine image: postgres:15.2-alpine
environment: environment:
POSTGRES_USER: ibis POSTGRES_USER: ibis
POSTGRES_PASSWORD: password POSTGRES_PASSWORD: password