Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/build_uw3_and_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ on:

workflow_dispatch:

env:
# Some Azure runners carry a MANA NIC whose InfiniBand verbs device UCX
# advertises but cannot open: uct_iface_open(ud_verbs/mana_0) fails inside
# MPI_Init, so `import underworld3` dies before any UW3 code runs (issues
# #461/#528 — four hits in the first week of 2026-08, each costing a manual
# re-roll). A single-node CI runner needs only shared memory and TCP, so pin
# the UCX transports and retire the whole flake class.
UCX_TLS: tcp,sm,self

jobs:
test:
runs-on: ubuntu-latest
Expand Down
Loading