mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-23 09:51:01 +00:00
try without auth
This commit is contained in:
parent
f9bd72e1ee
commit
a94fd6aaf6
1 changed files with 18 additions and 2 deletions
20
.drone.yml
20
.drone.yml
|
@ -11,12 +11,20 @@ steps:
|
||||||
user: root
|
user: root
|
||||||
commands:
|
commands:
|
||||||
- cargo check --all
|
- cargo check --all
|
||||||
|
# just to disable this temporarily
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
- name: cargo clippy
|
- name: cargo clippy
|
||||||
image: ekidd/rust-musl-builder:experimental-stable
|
image: ekidd/rust-musl-builder:experimental-stable
|
||||||
user: root
|
user: root
|
||||||
commands:
|
commands:
|
||||||
- cargo clippy
|
- cargo clippy
|
||||||
|
# just to disable this temporarily
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
- name: check documentation build
|
- name: check documentation build
|
||||||
image: ekidd/rust-musl-builder:experimental-stable
|
image: ekidd/rust-musl-builder:experimental-stable
|
||||||
|
@ -33,6 +41,10 @@ steps:
|
||||||
commands:
|
commands:
|
||||||
- cargo install diesel_cli --no-default-features --features postgres
|
- cargo install diesel_cli --no-default-features --features postgres
|
||||||
- mv /root/.cargo/bin/diesel /dieselcli/diesel
|
- mv /root/.cargo/bin/diesel /dieselcli/diesel
|
||||||
|
# just to disable this temporarily
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
- name: cargo test
|
- name: cargo test
|
||||||
image: ekidd/rust-musl-builder:experimental-stable
|
image: ekidd/rust-musl-builder:experimental-stable
|
||||||
|
@ -50,6 +62,10 @@ steps:
|
||||||
- apt-get -y install --no-install-recommends espeak postgresql-client
|
- apt-get -y install --no-install-recommends espeak postgresql-client
|
||||||
- /dieselcli/diesel migration run
|
- /dieselcli/diesel migration run
|
||||||
- cargo test --workspace --no-fail-fast
|
- cargo test --workspace --no-fail-fast
|
||||||
|
# just to disable this temporarily
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
|
||||||
- name: run federation tests
|
- name: run federation tests
|
||||||
image: docker/compose:alpine-1.27.4
|
image: docker/compose:alpine-1.27.4
|
||||||
|
@ -78,8 +94,8 @@ steps:
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
dockerfile: docker/prod/Dockerfile
|
dockerfile: docker/prod/Dockerfile
|
||||||
username: kevinbacon
|
#username: kevinbacon
|
||||||
password: pa55word
|
#password: pa55word
|
||||||
repo: dessalines/lemmy
|
repo: dessalines/lemmy
|
||||||
purge: true
|
purge: true
|
||||||
tags:
|
tags:
|
||||||
|
|
Loading…
Reference in a new issue