summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorfeld <feld@feld.me>2024-06-20 01:07:41 +0000
committerfeld <feld@feld.me>2024-06-20 01:07:41 +0000
commit9a4cdde5c9e833a8cc61d660f5627717756778d2 (patch)
tree0a1b2a55743c2e00f32c7549fc4bf68b0ea3c894 /.gitlab-ci.yml
parent3c1db78a6e8dc3cf9087ba5f825d53d5c6a9856d (diff)
parented2976b237b53a524247d564691e0a12d3231d68 (diff)
downloadpleroma-9a4cdde5c9e833a8cc61d660f5627717756778d2.tar.gz
pleroma-9a4cdde5c9e833a8cc61d660f5627717756778d2.zip
Merge branch 'bugfix/elixir-1.15' into 'develop'
Elixir 1.15 compatibility See merge request pleroma/pleroma!3917
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 45dcd6091..da2ddcf42 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -86,7 +86,6 @@ build-1.15.8-otp-26:
- .using-ci-base
stage: build
image: git.pleroma.social:5050/pleroma/pleroma/ci-base:elixir-1.15.8-otp-26
- allow_failure: true
script:
- mix compile --force
@@ -136,7 +135,7 @@ unit-testing-1.13.4-otp-25:
script: &testing_script
- mix ecto.create
- mix ecto.migrate
- - mix test --cover --preload-modules
+ - mix pleroma.test_runner --cover --preload-modules
coverage: '/^Line total: ([^ ]*%)$/'
artifacts:
reports:
@@ -150,7 +149,6 @@ unit-testing-1.15.8-otp-26:
- .using-ci-base
stage: test
image: git.pleroma.social:5050/pleroma/pleroma/ci-base:elixir-1.15.8-otp-26
- allow_failure: true
cache: *testing_cache_policy
services: *testing_services
script: *testing_script
@@ -167,11 +165,11 @@ unit-testing-1.13.4-otp-25-erratic:
script:
- mix ecto.create
- mix ecto.migrate
- - mix test --only=erratic
+ - mix pleroma.test_runner --only=erratic
-formatting-1.13:
+formatting-1.15:
extends: .build_changes_policy
- image: &formatting_elixir elixir:1.13-alpine
+ image: &formatting_elixir elixir:1.15-alpine
stage: lint
cache: *testing_cache_policy
before_script: &current_bfr_script