2023-04-05 20:29:35 +00:00
|
|
|
# TODO: The when: platform conditionals aren't working currently
|
|
|
|
# See https://github.com/woodpecker-ci/woodpecker/issues/1677
|
|
|
|
|
2023-04-13 20:33:00 +00:00
|
|
|
variables:
|
2024-04-04 14:14:59 +00:00
|
|
|
- &rust_image "rust:1.77"
|
2024-01-29 10:38:39 +00:00
|
|
|
- &install_pnpm "corepack enable pnpm"
|
2023-08-02 16:29:21 +00:00
|
|
|
- &slow_check_paths
|
2024-03-27 15:09:44 +00:00
|
|
|
- event: pull_request
|
|
|
|
path:
|
2024-03-26 09:17:42 +00:00
|
|
|
include: [
|
|
|
|
# rust source code
|
|
|
|
"crates/**",
|
|
|
|
"src/**",
|
|
|
|
"**/Cargo.toml",
|
|
|
|
"Cargo.lock",
|
|
|
|
# database migrations
|
|
|
|
"migrations/**",
|
|
|
|
# typescript tests
|
|
|
|
"api_tests/**",
|
|
|
|
# config files and scripts used by ci
|
|
|
|
".woodpecker.yml",
|
|
|
|
".rustfmt.toml",
|
|
|
|
"scripts/update_config_defaults.sh",
|
|
|
|
"diesel.toml",
|
|
|
|
".gitmodules",
|
|
|
|
]
|
2023-04-13 20:33:00 +00:00
|
|
|
|
2023-04-24 19:40:36 +00:00
|
|
|
# Broken for cron jobs currently, see
|
|
|
|
# https://github.com/woodpecker-ci/woodpecker/issues/1716
|
|
|
|
# clone:
|
|
|
|
# git:
|
|
|
|
# image: woodpeckerci/plugin-git
|
|
|
|
# settings:
|
|
|
|
# recursive: true
|
|
|
|
# submodule_update_remote: true
|
2023-04-13 20:33:00 +00:00
|
|
|
|
2023-08-10 12:15:30 +00:00
|
|
|
steps:
|
2023-04-24 19:40:36 +00:00
|
|
|
prepare_repo:
|
|
|
|
image: alpine:3
|
|
|
|
commands:
|
|
|
|
- apk add git
|
|
|
|
- git submodule init
|
2023-06-08 11:12:40 +00:00
|
|
|
- git submodule update
|
2024-03-27 15:09:44 +00:00
|
|
|
when:
|
2024-04-04 14:14:59 +00:00
|
|
|
- event: [pull_request, tag]
|
2023-04-24 19:40:36 +00:00
|
|
|
|
2023-05-13 20:50:58 +00:00
|
|
|
prettier_check:
|
2023-07-06 13:10:38 +00:00
|
|
|
image: tmknom/prettier:3.0.0
|
2023-05-13 20:50:58 +00:00
|
|
|
commands:
|
2024-01-29 10:38:39 +00:00
|
|
|
- prettier -c . '!**/volumes' '!**/dist' '!target' '!**/translations' '!api_tests/pnpm-lock.yaml'
|
2024-03-27 15:09:44 +00:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
2023-05-13 20:50:58 +00:00
|
|
|
|
2023-07-19 14:25:46 +00:00
|
|
|
toml_fmt:
|
2023-07-14 08:45:18 +00:00
|
|
|
image: tamasfe/taplo:0.8.1
|
|
|
|
commands:
|
|
|
|
- taplo format --check
|
2024-03-27 15:09:44 +00:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
2023-07-14 08:45:18 +00:00
|
|
|
|
2023-08-08 14:35:03 +00:00
|
|
|
sql_fmt:
|
2024-04-03 21:29:24 +00:00
|
|
|
image: backplane/pgformatter
|
2023-08-08 14:35:03 +00:00
|
|
|
commands:
|
|
|
|
- ./scripts/sql_format_check.sh
|
2024-03-27 15:09:44 +00:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
2023-08-08 14:35:03 +00:00
|
|
|
|
2023-04-05 20:29:35 +00:00
|
|
|
cargo_fmt:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: rustlang/rust:nightly
|
2023-04-05 20:29:35 +00:00
|
|
|
environment:
|
|
|
|
# store cargo data in repo folder so that it gets cached between steps
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-04-05 20:29:35 +00:00
|
|
|
commands:
|
2024-02-26 10:22:22 +00:00
|
|
|
- rustup component add rustfmt
|
2023-10-11 15:57:05 +00:00
|
|
|
- cargo +nightly fmt -- --check
|
2024-03-27 15:09:44 +00:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
2023-04-05 20:29:35 +00:00
|
|
|
|
2023-10-31 10:11:12 +00:00
|
|
|
cargo_machete:
|
|
|
|
image: rustlang/rust:nightly
|
|
|
|
commands:
|
|
|
|
- wget https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz
|
|
|
|
- tar -xvf cargo-binstall-x86_64-unknown-linux-musl.tgz
|
|
|
|
- cp cargo-binstall /usr/local/cargo/bin
|
|
|
|
- cargo binstall -y cargo-machete
|
|
|
|
- cargo machete
|
2024-03-27 15:09:44 +00:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
2023-10-31 10:11:12 +00:00
|
|
|
|
2023-12-12 13:54:06 +00:00
|
|
|
ignored_files:
|
|
|
|
image: alpine:3
|
|
|
|
commands:
|
|
|
|
- apk add git
|
|
|
|
- IGNORED=$(git ls-files --cached -i --exclude-standard)
|
|
|
|
- if [[ "$IGNORED" ]]; then echo "Ignored files present:\n$IGNORED\n"; exit 1; fi
|
2024-03-27 15:09:44 +00:00
|
|
|
when:
|
|
|
|
- event: pull_request
|
2023-12-12 13:54:06 +00:00
|
|
|
|
2023-06-21 11:57:01 +00:00
|
|
|
# make sure api builds with default features (used by other crates relying on lemmy api)
|
2023-07-19 14:25:46 +00:00
|
|
|
check_api_common_default_features:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: *rust_image
|
2023-06-21 11:57:01 +00:00
|
|
|
environment:
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-06-21 11:57:01 +00:00
|
|
|
commands:
|
|
|
|
- cargo check --package lemmy_api_common
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-06-21 11:57:01 +00:00
|
|
|
|
2023-04-05 20:29:35 +00:00
|
|
|
lemmy_api_common_doesnt_depend_on_diesel:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: *rust_image
|
2023-04-05 20:29:35 +00:00
|
|
|
environment:
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-04-05 20:29:35 +00:00
|
|
|
commands:
|
|
|
|
- "! cargo tree -p lemmy_api_common --no-default-features -i diesel"
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-07-19 14:25:46 +00:00
|
|
|
|
2023-07-14 08:45:18 +00:00
|
|
|
lemmy_api_common_works_with_wasm:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: *rust_image
|
2023-07-14 08:45:18 +00:00
|
|
|
environment:
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-07-14 08:45:18 +00:00
|
|
|
commands:
|
|
|
|
- "rustup target add wasm32-unknown-unknown"
|
|
|
|
- "cargo check --target wasm32-unknown-unknown -p lemmy_api_common"
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-04-05 20:29:35 +00:00
|
|
|
|
|
|
|
check_defaults_hjson_updated:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: *rust_image
|
2023-04-05 20:29:35 +00:00
|
|
|
environment:
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-04-05 20:29:35 +00:00
|
|
|
commands:
|
|
|
|
- export LEMMY_CONFIG_LOCATION=./config/config.hjson
|
|
|
|
- ./scripts/update_config_defaults.sh config/defaults_current.hjson
|
|
|
|
- diff config/defaults.hjson config/defaults_current.hjson
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-04-05 20:29:35 +00:00
|
|
|
|
2023-04-17 19:19:51 +00:00
|
|
|
check_diesel_schema:
|
2023-06-07 10:54:40 +00:00
|
|
|
image: willsquire/diesel-cli
|
2023-04-17 19:19:51 +00:00
|
|
|
environment:
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-04-17 19:19:51 +00:00
|
|
|
DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
|
|
|
|
commands:
|
|
|
|
- diesel migration run
|
|
|
|
- diesel print-schema --config-file=diesel.toml > tmp.schema
|
|
|
|
- diff tmp.schema crates/db_schema/src/schema.rs
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-04-17 19:19:51 +00:00
|
|
|
|
2024-01-24 15:22:33 +00:00
|
|
|
check_db_perf_tool:
|
|
|
|
image: *rust_image
|
|
|
|
environment:
|
|
|
|
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
|
|
|
|
RUST_BACKTRACE: "1"
|
|
|
|
CARGO_HOME: .cargo_home
|
|
|
|
commands:
|
|
|
|
# same as scripts/db_perf.sh but without creating a new database server
|
|
|
|
- export LEMMY_CONFIG_LOCATION=config/config.hjson
|
|
|
|
- cargo run --package lemmy_db_perf -- --posts 10 --read-post-pages 1
|
|
|
|
when: *slow_check_paths
|
|
|
|
|
2023-07-21 09:46:10 +00:00
|
|
|
cargo_clippy:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: *rust_image
|
2023-07-21 09:46:10 +00:00
|
|
|
environment:
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-07-21 09:46:10 +00:00
|
|
|
commands:
|
|
|
|
- rustup component add clippy
|
2023-11-21 13:51:22 +00:00
|
|
|
- cargo clippy --workspace --tests --all-targets --features console -- -D warnings
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-07-21 09:46:10 +00:00
|
|
|
|
2023-08-08 14:35:03 +00:00
|
|
|
cargo_build:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: *rust_image
|
2023-04-05 20:29:35 +00:00
|
|
|
environment:
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-04-05 20:29:35 +00:00
|
|
|
commands:
|
2023-08-08 14:35:03 +00:00
|
|
|
- cargo build
|
2023-10-11 15:57:05 +00:00
|
|
|
- mv target/debug/lemmy_server target/lemmy_server
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-04-05 20:29:35 +00:00
|
|
|
|
2023-08-08 14:35:03 +00:00
|
|
|
cargo_test:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: *rust_image
|
2023-04-05 20:29:35 +00:00
|
|
|
environment:
|
2023-08-08 14:35:03 +00:00
|
|
|
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
|
|
|
|
RUST_BACKTRACE: "1"
|
2023-11-24 16:26:21 +00:00
|
|
|
CARGO_HOME: .cargo_home
|
2023-04-05 20:29:35 +00:00
|
|
|
commands:
|
2023-08-08 14:35:03 +00:00
|
|
|
- export LEMMY_CONFIG_LOCATION=../../config/config.hjson
|
|
|
|
- cargo test --workspace --no-fail-fast
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-04-05 20:29:35 +00:00
|
|
|
|
2024-04-18 00:58:44 +00:00
|
|
|
check_diesel_migration:
|
|
|
|
# TODO: use willsquire/diesel-cli image when shared libraries become optional in lemmy_server
|
|
|
|
image: *rust_image
|
|
|
|
environment:
|
|
|
|
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
|
|
|
|
RUST_BACKTRACE: "1"
|
|
|
|
CARGO_HOME: .cargo_home
|
|
|
|
DATABASE_URL: postgres://lemmy:password@database:5432/lemmy
|
|
|
|
PGUSER: lemmy
|
|
|
|
PGPASSWORD: password
|
|
|
|
PGHOST: database
|
|
|
|
PGDATABASE: lemmy
|
|
|
|
commands:
|
|
|
|
- cargo install diesel_cli
|
|
|
|
- export PATH="$CARGO_HOME/bin:$PATH"
|
|
|
|
# Run all migrations
|
|
|
|
- diesel migration run
|
|
|
|
# Dump schema to before.sqldump (PostgreSQL apt repo is used to prevent pg_dump version mismatch error)
|
|
|
|
- apt update && apt install -y lsb-release
|
|
|
|
- sh -c 'echo "deb https://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
|
|
|
- wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
|
|
|
|
- apt update && apt install -y postgresql-client-16
|
|
|
|
- psql -c "DROP SCHEMA IF EXISTS r CASCADE;"
|
|
|
|
- pg_dump --no-owner --no-privileges --no-table-access-method --schema-only --no-sync -f before.sqldump
|
|
|
|
# Make sure that the newest migration is revertable without the `r` schema
|
|
|
|
- diesel migration redo
|
|
|
|
# Run schema setup twice, which fails on the 2nd time if `DROP SCHEMA IF EXISTS r CASCADE` drops the wrong things
|
|
|
|
- alias lemmy_schema_setup="target/lemmy_server --disable-scheduled-tasks --disable-http-server --disable-activity-sending"
|
|
|
|
- lemmy_schema_setup
|
|
|
|
- lemmy_schema_setup
|
|
|
|
# Make sure that the newest migration is revertable with the `r` schema
|
|
|
|
- diesel migration redo
|
|
|
|
# Check for changes in the schema, which would be caused by an incorrect migration
|
|
|
|
- psql -c "DROP SCHEMA IF EXISTS r CASCADE;"
|
|
|
|
- pg_dump --no-owner --no-privileges --no-table-access-method --schema-only --no-sync -f after.sqldump
|
|
|
|
- diff before.sqldump after.sqldump
|
|
|
|
when: *slow_check_paths
|
|
|
|
|
2023-04-05 20:29:35 +00:00
|
|
|
run_federation_tests:
|
2023-10-11 15:57:05 +00:00
|
|
|
image: node:20-bookworm-slim
|
2023-04-05 20:29:35 +00:00
|
|
|
environment:
|
|
|
|
LEMMY_DATABASE_URL: postgres://lemmy:password@database:5432
|
|
|
|
DO_WRITE_HOSTS_FILE: "1"
|
|
|
|
commands:
|
2024-01-29 10:38:39 +00:00
|
|
|
- *install_pnpm
|
2023-10-11 15:57:05 +00:00
|
|
|
- apt update && apt install -y bash curl postgresql-client
|
2023-04-05 20:29:35 +00:00
|
|
|
- bash api_tests/prepare-drone-federation-test.sh
|
|
|
|
- cd api_tests/
|
2024-01-29 10:38:39 +00:00
|
|
|
- pnpm i
|
|
|
|
- pnpm api-test
|
2023-08-02 16:29:21 +00:00
|
|
|
when: *slow_check_paths
|
2023-04-05 20:29:35 +00:00
|
|
|
|
2024-01-26 09:38:15 +00:00
|
|
|
federation_tests_server_output:
|
|
|
|
image: alpine:3
|
|
|
|
commands:
|
|
|
|
# `|| true` prevents this step from appearing to fail if the server output files don't exist
|
|
|
|
- cat target/log/lemmy_*.out || true
|
|
|
|
- "# If you can't see all output, then use the download button"
|
|
|
|
when:
|
2024-03-27 15:09:44 +00:00
|
|
|
- event: pull_request
|
|
|
|
status: failure
|
2024-01-26 09:38:15 +00:00
|
|
|
|
2023-06-20 14:29:24 +00:00
|
|
|
publish_release_docker:
|
2023-04-05 20:29:35 +00:00
|
|
|
image: woodpeckerci/plugin-docker-buildx
|
2023-06-20 14:29:24 +00:00
|
|
|
secrets: [docker_username, docker_password]
|
2023-04-05 20:29:35 +00:00
|
|
|
settings:
|
2023-04-16 16:56:12 +00:00
|
|
|
repo: dessalines/lemmy
|
2023-04-18 20:21:31 +00:00
|
|
|
dockerfile: docker/Dockerfile
|
2023-11-24 17:52:19 +00:00
|
|
|
platforms: linux/amd64, linux/arm64
|
2023-06-21 00:29:48 +00:00
|
|
|
build_args:
|
|
|
|
- RUST_RELEASE_MODE=release
|
2023-10-04 22:34:56 +00:00
|
|
|
tag: ${CI_COMMIT_TAG}
|
2023-04-05 20:29:35 +00:00
|
|
|
when:
|
2024-03-26 09:17:42 +00:00
|
|
|
- event: tag
|
2023-04-05 20:29:35 +00:00
|
|
|
|
2023-06-20 14:29:24 +00:00
|
|
|
nightly_build:
|
2023-04-05 20:29:35 +00:00
|
|
|
image: woodpeckerci/plugin-docker-buildx
|
2023-06-20 14:29:24 +00:00
|
|
|
secrets: [docker_username, docker_password]
|
2023-04-05 20:29:35 +00:00
|
|
|
settings:
|
2023-04-16 16:56:12 +00:00
|
|
|
repo: dessalines/lemmy
|
2023-04-18 20:21:31 +00:00
|
|
|
dockerfile: docker/Dockerfile
|
2023-08-31 13:02:59 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-06-21 00:29:48 +00:00
|
|
|
build_args:
|
|
|
|
- RUST_RELEASE_MODE=release
|
2023-06-20 14:29:24 +00:00
|
|
|
tag: dev
|
2023-04-05 20:29:35 +00:00
|
|
|
when:
|
2024-03-26 09:17:42 +00:00
|
|
|
- event: cron
|
2023-04-05 20:29:35 +00:00
|
|
|
|
2023-12-20 13:18:54 +00:00
|
|
|
# using https://github.com/pksunkara/cargo-workspaces
|
|
|
|
publish_to_crates_io:
|
|
|
|
image: *rust_image
|
|
|
|
commands:
|
|
|
|
- cargo install cargo-workspaces
|
|
|
|
- cp -r migrations crates/db_schema/
|
|
|
|
- cargo login "$CARGO_API_TOKEN"
|
|
|
|
- cargo workspaces publish --from-git --allow-dirty --no-verify --allow-branch "${CI_COMMIT_TAG}" --yes custom "${CI_COMMIT_TAG}"
|
|
|
|
secrets: [cargo_api_token]
|
|
|
|
when:
|
2024-03-26 09:17:42 +00:00
|
|
|
- event: tag
|
2023-12-20 13:18:54 +00:00
|
|
|
|
2023-04-05 20:29:35 +00:00
|
|
|
notify_on_failure:
|
|
|
|
image: alpine:3
|
2023-05-13 20:50:58 +00:00
|
|
|
commands:
|
2023-04-05 20:29:35 +00:00
|
|
|
- apk add curl
|
2023-08-09 09:14:09 +00:00
|
|
|
- "curl -d'Lemmy CI build failed: ${CI_PIPELINE_URL}' ntfy.sh/lemmy_drone_ci"
|
2023-04-05 20:29:35 +00:00
|
|
|
when:
|
2024-04-04 08:21:31 +00:00
|
|
|
- event: [pull_request, tag]
|
2024-03-27 15:09:44 +00:00
|
|
|
status: failure
|
2023-04-05 20:29:35 +00:00
|
|
|
|
|
|
|
notify_on_tag_deploy:
|
|
|
|
image: alpine:3
|
2023-05-13 20:50:58 +00:00
|
|
|
commands:
|
2023-04-05 20:29:35 +00:00
|
|
|
- apk add curl
|
|
|
|
- "curl -d'lemmy:${CI_COMMIT_TAG} deployed' ntfy.sh/lemmy_drone_ci"
|
|
|
|
when:
|
2024-03-26 09:17:42 +00:00
|
|
|
- event: tag
|
2023-04-05 20:29:35 +00:00
|
|
|
|
|
|
|
services:
|
|
|
|
database:
|
2024-02-07 10:21:02 +00:00
|
|
|
image: postgres:16-alpine
|
2023-04-05 20:29:35 +00:00
|
|
|
environment:
|
|
|
|
POSTGRES_USER: lemmy
|
|
|
|
POSTGRES_PASSWORD: password
|