akkoma/.woodpecker/test.yml

92 lines
1.9 KiB
YAML
Raw Permalink Normal View History

2024-05-27 01:56:05 +00:00
labels:
platform: linux/amd64
2023-07-20 16:27:58 +00:00
depends_on:
- lint
matrix:
ELIXIR_VERSION:
- 1.14
- 1.15
2024-04-12 18:13:33 +00:00
- 1.16
OTP_VERSION:
- 25
- 26
include:
2024-04-12 18:13:33 +00:00
- ELIXIR_VERSION: 1.16
OTP_VERSION: 26
2023-07-20 16:27:58 +00:00
variables:
- &scw-secrets
- SCW_ACCESS_KEY
- SCW_SECRET_KEY
- SCW_DEFAULT_ORGANIZATION_ID
- &setup-hex "mix local.hex --force && mix local.rebar --force"
- &on-release
when:
event:
- push
- tag
branch:
- develop
- stable
- refs/tags/v*
- refs/tags/stable-*
- &on-stable
when:
event:
- push
- tag
branch:
- stable
- refs/tags/stable-*
- &on-point-release
when:
event:
- push
branch:
- develop
- stable
- &on-pr-open
when:
event:
- pull_request
- &tag-build "export BUILD_TAG=$${CI_COMMIT_TAG:-\"$CI_COMMIT_BRANCH\"} && export PLEROMA_BUILD_BRANCH=$BUILD_TAG"
- &clean "(rm -rf release || true) && (rm -rf _build || true) && (rm -rf /root/.mix)"
- &mix-clean "mix deps.clean --all && mix clean"
services:
postgres:
image: postgres:15
when:
event:
- pull_request
environment:
POSTGRES_DB: pleroma_test_${ELIXIR_VERSION}_${OTP_VERSION}
2023-07-20 16:27:58 +00:00
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
2024-05-27 01:56:05 +00:00
steps:
test:
image: akkoma/ci-base:${ELIXIR_VERSION}-otp${OTP_VERSION}
2023-07-20 16:27:58 +00:00
<<: *on-pr-open
environment:
MIX_ENV: test
POSTGRES_DB: pleroma_test_${ELIXIR_VERSION}_${OTP_VERSION}
2023-07-20 16:27:58 +00:00
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
DB_HOST: postgres
commands:
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix compile
- mix ecto.drop -f -q
- mix ecto.create
- mix ecto.migrate
- mkdir -p test/tmp
- mix test --preload-modules --exclude erratic --exclude federated --exclude mocked
- mix test --preload-modules --only mocked