Skip to content

Commit f0674a9

Browse files
authored
Merge pull request #32482 from def-/pr-nightly20
ci: Nightly fixes (2025-05-13)
2 parents 5b14c15 + b12ca0a commit f0674a9

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

ci/builder/requirements.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ pdoc==15.0.3
3737
pg8000@git+https://github.com/tlocke/pg8000@46c00021ade1d19466b07ed30392386c5f0a6b8e
3838
prettytable==3.16.0
3939
psutil==7.0.0
40-
psycopg==3.2.8
41-
psycopg-binary==3.2.8
40+
# psycopg 3.2.8 causes Scalability test failures
41+
psycopg==3.2.7
42+
psycopg-binary==3.2.7
4243
# pydantic >= 2.9 causes pdoc 15.0.1 to fail: UserWarning: Error parsing type annotation dict[str, Any] | None for pydantic.main.BaseModel.__pydantic_extra__: 'function' object is not subscriptable
4344
# See also https://github.com/mitmproxy/pdoc/issues/741
4445
pydantic==2.8.2

ci/nightly/pipeline.template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1122,7 +1122,7 @@ steps:
11221122
depends_on: build-aarch64
11231123
timeout_in_minutes: 40
11241124
agents:
1125-
queue: hetzner-aarch64-4cpu-8gb
1125+
queue: hetzner-aarch64-8cpu-16gb
11261126
artifact_paths: [test/persist/maelstrom/**/*.log]
11271127
plugins:
11281128
- ./ci/plugins/mzcompose:

test/testdrive/introspection-sources.td

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -361,6 +361,10 @@ true true true true true
361361
ORDER BY f1, f2 DESC;
362362
> CREATE DEFAULT INDEX ON m_top1;
363363

364+
# TODO: Reenable when https://github.com/MaterializeInc/database-issues/issues/9261 is fixed
365+
$ skip-if
366+
SELECT true
367+
364368
> SELECT
365369
records >= 2 * 1000,
366370
records < 1.1 * 2 * 1000,
@@ -371,6 +375,8 @@ true true true true true
371375
WHERE name LIKE '%m_minmax%';
372376
true true true true true
373377

378+
$ skip-end
379+
374380
> SELECT
375381
records >= 2 * 1000,
376382
records < 2 * 2 * 1000,

0 commit comments

Comments
 (0)