File tree Expand file tree Collapse file tree 3 files changed +6
-12
lines changed
Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -52,16 +52,15 @@ jobs:
5252 fail-fast : false
5353 matrix :
5454 elixirbase :
55- - " 1.14.5 -erlang-23 .3.4.9 -alpine-3.16.9 "
55+ - " 1.15.6 -erlang-25 .3.2.6 -alpine-3.18.4 "
5656 postgres :
5757 - " 16.2-alpine"
5858 - " 11.11-alpine"
5959 - " 9.6-alpine"
60- - " 9.5-alpine"
6160 pool_count :
6261 - " 1"
6362 include :
64- - elixirbase : " 1.14.5 -erlang-23 .3.4.9 -alpine-3.16.9 "
63+ - elixirbase : " 1.15.6 -erlang-25 .3.2.6 -alpine-3.18.4 "
6564 postgres : " 16.2-alpine"
6665 pool_count : " 4"
6766 steps :
7978 fail-fast : false
8079 matrix :
8180 elixirbase :
82- - " 1.14.5 -erlang-23 .3.4.9 -alpine-3.16.9 "
81+ - " 1.15.6 -erlang-25 .3.2.6 -alpine-3.18.4 "
8382 mysql :
8483 - " 5.7"
8584 - " 8.0"
9695 fail-fast : false
9796 matrix :
9897 elixirbase :
99- - " 1.14.5 -erlang-23 .3.4.9 -alpine-3.16.9 "
98+ - " 1.15.6 -erlang-25 .3.2.6 -alpine-3.18.4 "
10099 mssql :
101100 - " 2019"
102101 - " 2022"
Original file line number Diff line number Diff line change @@ -41,12 +41,7 @@ integration-test-postgres:
4141 FROM +setup-base
4242 ARG POSTGRES= "11.11"
4343
44- IF [ "$POSTGRES" = "9.5-alpine" ]
45- # for 9.5 we require a downgraded version of pg_dump;
46- # and in the 3.4 version, it is not included in postgresql-client but rather in postgresql
47- RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.4/main' >> /etc/apk/repositories
48- RUN apk add postgresql= 9.5.13-r0
49- ELSE IF [ "$POSTGRES" = "16.2-alpine" ]
44+ IF [ "$POSTGRES" = "16.2-alpine" ]
5045 # for 16 we need an upgraded version of pg_dump;
5146 # alpine 3.16 does not come with the postgres 16 client by default;
5247 # we must first update the public keys for the packages because they
Original file line number Diff line number Diff line change @@ -202,6 +202,6 @@ defmodule Ecto.Integration.StorageTest do
202202 PoolRepo . config ( )
203203 )
204204
205- assert output =~ "INSERT INTO `schema_migrations` VALUES ( "
205+ assert output =~ "INSERT INTO `schema_migrations`"
206206 end
207207end
You can’t perform that action at this time.
0 commit comments