branch: rosetta:commits 「№21269」
Commited by: lyskov-ai
GitHub Pull Request link: 「№707」
Merge: 「c0fbd1cd0」「349a3f409」  code diff
Scheduled at: 2026-06-30 19:53:04.993037
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Pull Request №707 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/fix/off-by-one-1-indexed-loops-batch Merge: c0fbd1cd0e786b420b817fd4f560a487ab05a307←349a3f409fdc85412cfd7cb6faf70c749b455300 Fix off-by-one loops over 1-indexed residue/atom/element ranges ---------------- Merge commit message: Fix off-by-one loops over 1-indexed residue/atom/element ranges Replace `i < container.size()` with `i <= container.size()` (or the matching `i < pose.size()` -> `i <= pose.size()`) across 35 loops where the body uses `i` as a direct 1-indexed element accessor (`pose.residue(i)`, `vec[i]`, etc.) — so the last residue/atom/element was silently being skipped. Also fixes two related copy-paste bugs in pose_sewing that surfaced during the audit: the distance check `pose.residue(upstream_res).xyz(2) .distance(pose.residue(upstream_res).xyz(2))` was self-distance (always zero, condition always satisfied) — should compare upstream vs downstream residue xyz. Affects helix_pair detection in BlockwiseAnalysisMover and OmnibusDisulfideAnalysisLabelerMover. Skipped candidates: loops with pair access `[i+1]` (correct stop at size-1), cutpoint-style "between residues" loops, MEM-chain-skipping loops in protocols/membrane, separator-style "all-but-last + last raw" patterns, suite/connection enumerations (N-1 connections for N segments), and commented-out code.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking


branch: rosetta:commits 「№21268」
Commited by: lyskov-ai
GitHub commit link: 「c0fbd1cd0e786b42」
Difference from previous tested commit:  code diff
Commit date: 2026-06-30 19:49:21
ubuntu-26.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-26.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit gcc-12.gcc.unit gcc-13.gcc.unit gcc-14.gcc.unit gcc-15.gcc.unit gcc-16.gcc.unit ubuntu-26.04.clang.unit ubuntu-26.04.gcc.unit

Apply Rule of Zero to utility/keys container family (corrected) (#705)

...
Test: ubuntu-26.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-26.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: gcc-14.gcc.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: gcc-15.gcc.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: gcc-16.gcc.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-26.04.clang.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-26.04.gcc.unit

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:commits 「№21267」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№708」
Merge: 「aeed26aa1」「04669b474」  code diff
Scheduled at: 2026-06-28 13:54:11.370292
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №708 RosettaCommons/rosetta/main ← klimaj/rosetta/test_builds Merge: aeed26aa121b084f58f02bb9d358d1b285cfb78b←04669b474f1c71b9b3e00dd13ed083457b713e71 Testing Pose bindings/numeric unit tests with standard PyRosetta builds ---------------- Merge commit message: Setting default pickle protocol for Python 3.7

...


branch: rosetta:commits 「№21266」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№708」
Merge: 「aeed26aa1」「a2e7defca」  code diff
Scheduled at: 2026-06-27 21:36:01.108449
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №708 RosettaCommons/rosetta/main ← klimaj/rosetta/test_builds Merge: aeed26aa121b084f58f02bb9d358d1b285cfb78b←a2e7defca066df604306886ee7f3d5b61f7f0e24 Testing Pose bindings/numeric unit tests with standard PyRosetta builds ---------------- Merge commit message: Skipping Pose object serialization for non-serialization builds

...
Test: gcc-9.gcc.python37.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods


branch: rosetta:commits 「№21265」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№708」
Merge: 「aeed26aa1」「bc91b5235」  code diff
Scheduled at: 2026-06-27 20:39:04.211255
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №708 RosettaCommons/rosetta/main ← klimaj/rosetta/test_builds Merge: aeed26aa121b084f58f02bb9d358d1b285cfb78b←bc91b523580212874e045fdd4ceae4ce1506f5f6 Testing Pose bindings/numeric unit tests with standard PyRosetta builds ---------------- Merge commit message: Remove scipy dependency via a numpy-only equivalent implementation

...
Test: m1.clang.python38.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods
Test: mac.clang.python38.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods
Test: mac.clang.python39.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods
Test: ubuntu.clang.python310.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods
Test: ubuntu.gcc.python312.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods


branch: rosetta:commits 「№21264」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№726」
Merge: 「9567e54ba」「95c2adbe8」  code diff
Scheduled at: 2026-06-26 23:42:23.616859
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №726 RosettaCommons/rosetta/main ← klimaj/rosetta/fix_diagnostics_port Merge: 9567e54bafdaf4697b28b6f4d41a07596e50ed5c←95c2adbe8956f58dae7537292165b853b3758e8e Update deprecated Dask `LocalCluster` method parameters in PyRosetta unit tests ---------------- Merge commit message: Revert "Add pyrosetta.tests.distributed.test_dask_worker test" This reverts commit 00e5dbe8a8e43beb35870f4ddfd5c070a00ad7bc.

...


branch: rosetta:commits 「№21263」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№708」
Merge: 「9567e54ba」「0dc2dbb66」  code diff
Scheduled at: 2026-06-26 19:44:36.213829
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №708 RosettaCommons/rosetta/main ← klimaj/rosetta/test_builds Merge: 9567e54bafdaf4697b28b6f4d41a07596e50ed5c←0dc2dbb66d24ef65da2d3302a6ddcc129b3042da Testing Pose bindings/numeric unit tests with standard PyRosetta builds ---------------- Merge commit message: Install numpy in non-serialization builds in get_required_pyrosetta_python_packages_for_testing

...
Test: gcc-9.gcc.python37.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python310.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python311.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python312.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python313.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python314.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python38.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python39.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: mac.clang.python38.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: mac.clang.python39.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment


branch: rosetta:commits 「№21262」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№708」
Merge: 「9567e54ba」「242a3b04f」  code diff
Scheduled at: 2026-06-26 16:22:02.071336
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №708 RosettaCommons/rosetta/main ← klimaj/rosetta/test_builds Merge: 9567e54bafdaf4697b28b6f4d41a07596e50ed5c←242a3b04fb5d314584d21ce58870674c8e085638 Testing Pose bindings/numeric unit tests with standard PyRosetta builds ---------------- Merge commit message: Remove exit on missing numpy requirement

...
Test: m1.clang.python310.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python311.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python312.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python313.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python314.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python38.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment
Test: m1.clang.python39.PyRosetta.unit

Failed sub-tests (click for more details):
T021_Pose_Methods T022_Pose_Alignment


branch: rosetta:commits 「№21261」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№726」
Merge: 「9567e54ba」「00e5dbe8a」  code diff
Scheduled at: 2026-06-26 15:13:31.768279
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №726 RosettaCommons/rosetta/main ← klimaj/rosetta/fix_diagnostics_port Merge: 9567e54bafdaf4697b28b6f4d41a07596e50ed5c←00e5dbe8a8e43beb35870f4ddfd5c070a00ad7bc Update deprecated Dask `LocalCluster` method parameters in PyRosetta unit tests ---------------- Merge commit message: Add pyrosetta.tests.distributed.test_dask_worker test

...
Test: ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:commits 「№21260」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№717」
Merge: 「bbb6a2d27」「72ee12c45」  code diff
Scheduled at: 2026-06-26 00:59:11.212623
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Pull Request №717 RosettaCommons/rosetta/main ← roccomoretti/rosetta/bcif_mmjson Merge: bbb6a2d27c70be05b2fb2409f3920b5894967d60←72ee12c45b6c16268f1b03f1dab2190623a10051 BinaryCIF and mmJSON input support for Rosetta. ---------------- Merge commit message: Remove unintended files.

...
Test: linux.gcc.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.gcc.cxx11thread.serialization.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.gcc.mpi.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.gcc.mpi.serialization.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.clang.build.levels

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.clang.build.ninja_debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.gcc.code_quality.beautification

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: ubuntu.gcc.code_quality.merge_size

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.gcc.mpi.serialization.integration.mpi

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.clang.integration.release_debug_no_symbols

Failed sub-tests (click for more details):
alt_cif_load features
Test: linux.gcc.cxx11thread.integration.thread

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: mac.clang.python39.integration

Failed sub-tests (click for more details):
alt_cif_load mp_f19_relax
Test: linux.gcc.cxx11thread.serialization.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.gcc.unit

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: windows.cl.windows.build.debug

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: windows.cl.windows.build.release

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:commits 「№21259」
Commited by: lyskov-ai
GitHub Pull Request link: 「№723」
Merge: 「9567e54ba」「5f88382e5」  code diff
Scheduled at: 2026-06-26 00:45:08.656367
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Pull Request №723 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/fix/numeric-gcc15-template-id-cdtor Merge: 9567e54bafdaf4697b28b6f4d41a07596e50ed5c←5f88382e5242482039bed0812b890a38fbd85dae Drop template-id from MathVector/MathMatrix ctor/dtor names (GCC 15 -Werror=template-id-cdtor) ---------------- Merge commit message: Drop template-id from MathVector/MathMatrix ctor/dtor names (GCC 15) GCC 15 enforces -Werror=template-id-cdtor: a class template may not name its own constructors or destructors with explicit template arguments (the injected-class-name must be used without <...>). MathVector and MathMatrix declared several ctors and their dtor as e.g. 'MathVector< T>()' and '~MathVector< T>()', which fails to compile under GCC 15 in C++20 mode and broke the debug build before it reached any core/ code. Drop the '< T>' so these match the injected-class-name form already used by the copy constructors in the same classes. No semantic change.

...
Test: linux.gcc.code_quality.beautification

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking revold_vhts


branch: rosetta:commits 「№21258」
Commited by: lyskov-ai
GitHub Pull Request link: 「№725」
Merge: 「9567e54ba」「d674c6a33」  code diff
Scheduled at: 2026-06-26 00:45:04.900446
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Pull Request №725 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/refactor/protocols-rule-of-zero-redundant-dtors Merge: 9567e54bafdaf4697b28b6f4d41a07596e50ed5c←d674c6a338a087e57a3e277f0dced0cf781119a4 Apply Rule of Zero to protocols/ classes with redundant destructors ---------------- Merge commit message: Apply Rule of Zero to protocols/ classes with redundant destructors Removes user-declared destructors that are equivalent to the implicitly generated one (either '= default' or an empty '{}' body), letting the compiler generate them. In every case the class holds only non-owning raw pointers (back-references it does not allocate or free), so no destructor logic is lost and ownership semantics are unchanged. Classes: - antibody/clusters/CDRClusterSet - hbnet/NetworkState - jobdist/AtomTreeDiffJobDistributor - nmr/pcs/AtomGridPoint - noesy_assign/FloatingResonance - noesy_assign/PeakAssignment - peptide_deriver/PeptideDeriverBasicStreamOutputter (also drops its user-declared copy constructor, which did a plain memberwise copy identical to the implicit one) For classes deriving from a base with a virtual destructor, the implicit destructor is virtual and inherited, so polymorphic destruction is unchanged. A few now-moot 'auto-generated destructor' doc comments were removed alongside their declarations. Other rule_of_zero scan hits in protocols/ were intentionally left out: they own their pointers (freed in the destructor), are singletons/ factories that legitimately prevent copying, are observers whose destructors detach from a subject, or have intentionally partial copy constructors.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking


branch: rosetta:commits 「№21257」
Commited by: lyskov-ai
GitHub Pull Request link: 「№722」
Merge: 「f8a8eab43」「87aafb70e」  code diff
Scheduled at: 2026-06-25 22:59:13.044748
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Pull Request №722 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/fix/membrane-info-slab-arg-order Merge: f8a8eab4344af49c25e1e5db84ce25fec05eea27←87aafb70e6d09e8a333fac5418df8fd5c9552384 Fix Slab geometry thickness/steepness argument order in MembraneInfo (#719) ---------------- Merge commit message: Fix Slab geometry thickness/steepness argument order in MembraneInfo Slab's constructor is Slab(steepness, thickness), but two MembraneInfo constructors called it with the arguments swapped (see issue #719): - The plain 6-arg constructor passed Slab(thickness, steepness), so the Slab geometry stored thickness and steepness swapped. Because the fa_2012 energy methods (FaMPEnv/FaMPSolv -> mpframework_smooth_fa_2012) read thickness/steepness off the geometry, this silently changed scores. Now passes Slab(steepness, thickness). - The implicit-lipid constructor passed Slab(thickness, steepness) where the bare 'thickness' was not the member just set from water_thickness() but the unscoped MEM::thickness enum (== 1) from MembraneParams.hh, so the call was effectively Slab(1, steepness) and the lipid water thickness was dropped. Now passes Slab(steepness, thickness_), matching the sibling lipid + MP_GEOMETRY_TRANSITION constructor's SLAB case.

...
Test: linux.gcc.mpi.serialization.integration.mpi

Failed sub-tests (click for more details):
replica_docking
Test: linux.clang.integration.release_debug_no_symbols

Failed sub-tests (click for more details):
dgdp_script


branch: rosetta:commits 「№21256」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№720」
Merge: 「bbb6a2d27」「e37513610」  code diff
Scheduled at: 2026-06-25 18:20:03.980291
PyRosetta.notebook gcc-9.gcc.python37.PyRosetta.unit m1.clang.python310.PyRosetta.unit m1.clang.python311.PyRosetta.unit m1.clang.python312.PyRosetta.unit m1.clang.python313.PyRosetta.unit m1.clang.python314.PyRosetta.unit m1.clang.python38.PyRosetta.unit m1.clang.python39.PyRosetta.unit mac.clang.python310.PyRosetta.unit mac.clang.python311.PyRosetta.unit mac.clang.python312.PyRosetta.unit mac.clang.python313.PyRosetta.unit mac.clang.python314.PyRosetta.unit mac.clang.python38.PyRosetta.unit mac.clang.python39.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.clang.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-20.04.clang.python39.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python310.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python311.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python312.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python313.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python314.PyRosetta.unit ubuntu-20.04.gcc.cxx11thread.serialization.python39.PyRosetta.unit ubuntu-22.04.clang.python39.PyRosetta.unit ubuntu.clang.python310.PyRosetta.unit ubuntu.clang.python311.PyRosetta.unit ubuntu.clang.python312.PyRosetta.unit ubuntu.clang.python313.PyRosetta.unit ubuntu.clang.python314.PyRosetta.unit ubuntu.clang.python39.PyRosetta.unit ubuntu.gcc.python310.PyRosetta.unit ubuntu.gcc.python311.PyRosetta.unit ubuntu.gcc.python312.PyRosetta.unit ubuntu.gcc.python313.PyRosetta.unit ubuntu.gcc.python314.PyRosetta.unit ubuntu.gcc.python39.PyRosetta.unit scripts.pyrosetta ubuntu-20.04.clang.python39.unit ubuntu-22.04.clang.python39.unit

Pull Request №720 RosettaCommons/rosetta/main ← RosettaCommons/rosetta/roccomoretti-pyjobdistributor Merge: bbb6a2d27c70be05b2fb2409f3920b5894967d60←e3751361009dba8c0071735914215864538210c5 Fix restart behavior in PyJobDistributor ---------------- Merge commit message: Fix restart behavior in PyJobDistributor The PyJobDistributor can result in an infinite loop if one of the entries are already completed (e.g. from a prior run) or is in progress from another run. Fixes #347



branch: rosetta:commits 「№21255」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№716」
Merge: 「bbb6a2d27」「ea721e3f2」  code diff
Scheduled at: 2026-06-22 10:37:56.113121
linux.clang.bcl.build.debug linux.gcc.bcl.build.debug mac.clang.bcl.build.debug ubuntu-20.04.gcc.bcl.python39.integration.bcl ubuntu.gcc.bcl.python39.integration.bcl

Pull Request №716 RosettaCommons/rosetta/main ← roccomoretti/rosetta/fix_bcl Merge: bbb6a2d27c70be05b2fb2409f3920b5894967d60←ea721e3f202dcc2d7b99c53032e5aa99789b6be4 Fix the extras=bcl compilation. ---------------- Merge commit message: Fix the extras=bcl compilation. I accidentally broke it with the multi-chainletter PR.

...


branch: rosetta:commits 「№21254」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№698」
Merge: 「8f55d1556」「3dcd35ef3」  code diff
Scheduled at: 2026-06-15 15:50:21.798640
linux.clang linux.gcc linux.srlz mac.clang
debug
release
unit
mac.clang.python38.PyRosetta.unit ubuntu.clang.cxx11thread.serialization.python38.PyRosetta.unit mpi mpi.serialization build.header build.levels build.ninja_debug beautification code_quality.cppcheck code_quality.merge_size serialization code_quality.submodule_regression integration.mpi integration.release_debug integration.tensorflow integration.thread integration.torch integration performance profile linux.clang.score linux.gcc.score mac.clang.score scripts.pyrosetta scripts.rosetta.parse scripts.rosetta.validate scripts.rosetta.verify util.apps windows.build.debug windows.build.release

Pull Request №698 RosettaCommons/rosetta/main ← roccomoretti/rosetta/change_chirality_loading Merge: 8f55d1556a33b9d485bc33f6e788ddf6f5216669←3dcd35ef3b290a2461db2f870b1048350163baef Rework chirality detection in restype determination for PDB loading ---------------- Merge commit message: Merge remote-tracking branch 'origin/main' into change_chirality_loading



< 1 2 3 4 5 6 7 8 9 10 .. 62 >

Legend:
queued Queued Test
queued for comparison Test finished running but not yet compared
running Test is Running right now
comparing Test results is now comparing with previous results
finished Test is finished without errors
failed Test failed
build Failed Test could not be run because build failed
script failed Test results is unknow because test-script failed
canceled Test was canceled