Skip to content

Commit 9458682

Browse files
authored
Merge pull request #246178 from Homebrew/pg18-test
formulae: test with `postgresql@18`
2 parents 0dbfbad + c65eb0a commit 9458682

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

Formula/d/dexter.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Dexter < Formula
1616
sha256 cellar: :any_skip_relocation, x86_64_linux: "25f60887e53b0ee6efcf578c4a5bb4854120320b638e2f3f4b774016449224ef"
1717
end
1818

19-
depends_on "postgresql@17" => :test
19+
depends_on "postgresql@18" => :test
2020
depends_on "libpq"
2121
depends_on "ruby"
2222

@@ -60,7 +60,7 @@ def install
6060
test do
6161
ENV["LC_ALL"] = "C"
6262

63-
postgresql = Formula["postgresql@17"]
63+
postgresql = Formula["postgresql@18"]
6464
pg_ctl = postgresql.opt_bin/"pg_ctl"
6565
port = free_port
6666

Formula/l/lakekeeper.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Lakekeeper < Formula
1717

1818
depends_on "cmake" => :build
1919
depends_on "rust" => :build
20-
depends_on "postgresql@17" => :test
20+
depends_on "postgresql@18" => :test
2121
depends_on "openssl@3"
2222

2323
def install
@@ -31,7 +31,7 @@ def install
3131
test do
3232
ENV["LC_ALL"] = "C"
3333

34-
postgresql = Formula["postgresql@17"]
34+
postgresql = Formula["postgresql@18"]
3535
pg_ctl = postgresql.opt_bin/"pg_ctl"
3636
port = free_port
3737

Formula/m/miniflux.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Miniflux < Formula
1414
end
1515

1616
depends_on "go" => :build
17-
depends_on "postgresql@17" => :test
17+
depends_on "postgresql@18" => :test
1818

1919
def install
2020
ldflags = %W[
@@ -38,7 +38,7 @@ def install
3838
ENV["LC_ALL"] = "C"
3939

4040
pg_port = free_port
41-
pg_bin = Formula["postgresql@17"].opt_bin
41+
pg_bin = Formula["postgresql@18"].opt_bin
4242
pg_ctl = pg_bin/"pg_ctl"
4343

4444
datadir = testpath/"postgres"

Formula/p/pgslice.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class Pgslice < Formula
1616
sha256 cellar: :any_skip_relocation, x86_64_linux: "8ae944ff188b457801ef9cbd8aed418e6a41e43eada6051ea43180fb2e357fb9"
1717
end
1818

19-
depends_on "postgresql@17" => :test
19+
depends_on "postgresql@18" => :test
2020
depends_on "libpq"
2121
depends_on "ruby"
2222

@@ -50,7 +50,7 @@ def install
5050
test do
5151
ENV["LC_ALL"] = "C"
5252

53-
postgresql = Formula["postgresql@17"]
53+
postgresql = Formula["postgresql@18"]
5454
pg_ctl = postgresql.opt_bin/"pg_ctl"
5555
port = free_port
5656

Formula/p/pgstream.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class Pgstream < Formula
1515
end
1616

1717
depends_on "go" => :build
18-
depends_on "postgresql@17" => :test
18+
depends_on "postgresql@18" => :test
1919
depends_on "wal2json" => :test
2020

2121
def install
@@ -30,7 +30,7 @@ def install
3030

3131
ENV["LC_ALL"] = "C"
3232

33-
postgresql = Formula["postgresql@17"]
33+
postgresql = Formula["postgresql@18"]
3434
pg_ctl = postgresql.opt_bin/"pg_ctl"
3535
port = free_port
3636

Formula/p/postgraphile.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Postgraphile < Formula
1212
sha256 cellar: :any_skip_relocation, all: "50536d0d0000e441a09373ba89a497efda82318192103e59f212814dcc3ee20b"
1313
end
1414

15-
depends_on "postgresql@17" => :test
15+
depends_on "postgresql@18" => :test
1616
depends_on "node"
1717

1818
def install
@@ -24,7 +24,7 @@ def install
2424
ENV["LC_ALL"] = "C"
2525
assert_match "postgraphile", shell_output("#{bin}/postgraphile --help")
2626

27-
pg_bin = Formula["postgresql@17"].opt_bin
27+
pg_bin = Formula["postgresql@18"].opt_bin
2828
system pg_bin/"initdb", "-D", testpath/"test"
2929
pid = spawn("#{pg_bin}/postgres", "-D", testpath/"test")
3030

Formula/t/teslamate.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Teslamate < Formula
1717
end
1818

1919
depends_on "node" => :build
20-
depends_on "postgresql@17" => :test
20+
depends_on "postgresql@18" => :test
2121
depends_on "elixir"
2222
depends_on "erlang"
2323
depends_on "openssl@3"
@@ -64,7 +64,7 @@ def install
6464
ENV["LC_ALL"] = "C"
6565

6666
pg_port = free_port
67-
pg_bin = Formula["postgresql@17"].opt_bin
67+
pg_bin = Formula["postgresql@18"].opt_bin
6868
pg_ctl = pg_bin/"pg_ctl"
6969
datadir = testpath/"postgres"
7070
system pg_ctl, "init", "-D", datadir

0 commit comments

Comments
 (0)