branch: rosetta:commits 「№21311」
Commited by: lyskov-ai
GitHub Pull Request link: 「№764」
Merge: 「0c38201cd」「fa272981f」  code diff
Scheduled at: 2026-09-17 20:12:30.002731
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 №764 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/fix/copy-ctor-drops-members Merge: 0c38201cdcd83a9217d947a1604b4317f71c6831←fa272981f0b7f34f0077366e934d22a728d299f2 Copy missing data members in hand-written copy ctors / assignment operators ---------------- Merge commit message: Copy missing data members in hand-written copy ctors / assignment operators A sweep of hand-written copy constructors and copy-assignment operators turned up 30 classes that copy most of their data members but silently skip one or two. In each case the skipped member is configuration that the object is expected to carry with it, not a cache or scratch state, so the copy (usually produced by clone()) behaves differently from the original. Several of the skipped members have no default member initializer, so the copy left them indeterminate rather than merely stale -- MembraneInfo::membrane_core_, BestHotspotCstMover::cb_force_constant_, SSElementLengthFilter::threshold_, RRComparer*::absolute_threshold_, RotamerRecovery::ignore_unrecognized_res_, CircularPermutation::ignore_chain_, MPDockingMover::jump_num_ and SizeInSegmentsRequirement::size_. BondedResidueSelector's copy constructor needed more than an added initializer: it set use_input_set_selector_ and then called set_input_set(), which resets that flag to false, so a copy of a selector-driven instance always fell back to the (empty) input set. It is now a plain member-wise copy. AbrelaxApplication::trRosetta_cst_generator_ is declared under #ifdef USE_TENSORFLOW, so its initializer carries the same guard. Each new initializer is placed in declaration order so no -Wreorder warning is introduced. Detector hits that were verified as deliberate are left alone: caches and scratch state (Energies::nblist_, RigidBodyPerturbMover::rb_delta_, GraftSwitchMover::orig_pose_), observer links, back-pointers to an owning object, const members that a copy-assignment cannot write (the pcs* PseudocontactShiftData family), and classes whose copy body re-derives the members through initialize() or a copy_* helper.

...


branch: rosetta:commits 「№21310」
Commited by: lyskov-ai
GitHub Pull Request link: 「№763」
Merge: 「0c38201cd」「4066812b2」  code diff
Scheduled at: 2026-09-17 16:14:33.072426
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 №763 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/refactor/owning-raw-pointers-to-unique-ptr Merge: 0c38201cdcd83a9217d947a1604b4317f71c6831←4066812b2d3eccc8fe66d5300f13054195e3fc6a Replace manually-deleted owning raw pointers with std::unique_ptr ---------------- Merge commit message: Replace manually-deleted owning raw pointers with std::unique_ptr Twelve classes held a heap object by raw pointer and freed it with an explicit delete in their destructor. Hold each in a std::unique_ptr instead, so ownership is expressed in the type and the destructors stop hand-managing memory. Eight graph classes own boost::unordered_object_pool instances: utility::graph::Graph and Digraph (element pool plus edge pool each), EnergyGraph, MinimizationGraph, TenANeighborGraph, BuriedUnsatPenaltyGraph, JobDigraph and SewGraph. In Graph and Digraph this also corrects the teardown order: the explicit delete freed the element pool from the destructor body while edge_list_ -- which holds a reference to that pool and returns its elements to it as it is destroyed -- was still alive. Member destruction now runs the list first and frees the pool afterwards. SICFast, MotifHashRigidScore, triangleIterator and FragmentCandidate each owned a single object while leaving their copy operations implicit, so copying any of them would have double-freed. The unique_ptr members make them non-copyable. MotifHashRigidScore::ssinfo1_ and ssinfo2_ were never allocated -- always null, with their only readers commented out -- so they are deleted rather than converted, along with the now-unused SS_Info2 includes.

...
Test: linux.clang.integration.release_debug_no_symbols

Failed sub-tests (click for more details):
features
Test: mac.clang.python39.integration

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


branch: rosetta:commits 「№21309」
Commited by: lyskov-ai
GitHub Pull Request link: 「№762」
Merge: 「0c38201cd」「375404062」  code diff
Scheduled at: 2026-09-17 15:53:35.132106
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 №762 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/fix/duplicated-copy-paste-conditions Merge: 0c38201cdcd83a9217d947a1604b4317f71c6831←375404062ef86004dfcfce5ea79ba16380ec9054 Fix copy/paste bugs in duplicated conditions ---------------- Merge commit message: Delete unreachable duplicate PoseCoordPickMode_BB branch xyzStripeHashPoseWithMeta::init_with_pose tested PoseCoordPickMode_BB twice in the same if/else chain, so the second branch could never run. Its body collects CA, C and CB, which matches no value of PoseCoordPickMode -- N_CA_C and N_CA_C_CB both include N -- so the intent behind it is not recoverable. The surviving first branch is the correct one: it collects N, CA, C, O and CB, matching both the natom counting loop above it and the canonical case PoseCoordPickMode_BB in core/pose/xyzStripeHashPose.cc. Removing dead code, no behaviour change.

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

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

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


branch: rosetta:commits 「№21308」
Commited by: lyskov-ai
GitHub Pull Request link: 「№762」
Merge: 「0c38201cd」「0fbeb47e0」  code diff
Scheduled at: 2026-09-17 15:42:15.356944
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 №762 RosettaCommons/rosetta/main ← lyskov-ai/rosetta/fix/duplicated-copy-paste-conditions Merge: 0c38201cdcd83a9217d947a1604b4317f71c6831←0fbeb47e0091638e54288b68e9ee0de2c22c7224 Fix copy/paste bugs in duplicated conditions ---------------- Merge commit message: Fix copy/paste bugs in duplicated conditions Each of these tests the same operand twice in one condition or if/else chain, so a sibling operand is never tested and part of the check is dead. Behaviour fixes: * CartesianBondedEnergy: the torsion ring-atom test checked atids[2] twice and never atids[4], so 4-atom ring torsions were not always handed off to cart_bonded_ring. * chemical/rna/util: in the SUGAR/SUGAR CIS base-pair table the guanine row was labelled `aa1 == na_rad`, which the adenine row above already matches. All four guanine branches were unreachable. They push " H22", an atom only RGU has (RAD has " H2 "), and na_rgu was the one row missing from the otherwise complete 4x4 table. * DisulfideOptimizationMover: the "both residues are disulfide bonded" check tested cys_pos[1] twice, so cys_pos[2] was never validated. * DofUnlock: the environment-id half of the passport check compared pass_out to itself instead of to pass_, so a mismatched environment id was never caught. * RotamerRecovery: runtime_assert compared pose_rots.size() to itself instead of to nat_rots.size(). * FloppyTailMover: flexible_chain appeared twice in the list of options that conflict with an explicit movemap, so flexible_start_resnum was never rejected. The error message had the same duplication. Behaviour-preserving removals of dead duplicate conditions: * cryst/wallpaper: "C211" listed twice among the tetragonal groups. * CDRSeqDesignOptions: "DISALLOWED" listed twice. * SecretionPredictionFilter, SecretionOptimizationMover: the dG_ins threshold comparison repeated in the same && chain. Found with a new redundant-expression / branch-clone analysis pass over utility/, basic/, core/, protocols/ and numeric/; utility/, basic/ and numeric/ had no true positives.

Rosetta Benchmark 5 hours
Tests for this revision was automatically canceled because newer set of tests for pull-request №762 was submitted!
...


branch: rosetta:commits 「№21307」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№753」
Merge: 「de92a3c0d」「5ef46d681」  code diff
Scheduled at: 2026-09-16 15:18:15.603070
gcc-9.gcc.serialization.python310.PyRosetta.notebook gcc-9.gcc.serialization.python311.PyRosetta.notebook gcc-9.gcc.serialization.python312.PyRosetta.notebook gcc-9.gcc.serialization.python313.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 №753 RosettaCommons/rosetta/main ← roccomoretti/rosetta/bindcraft_python_test Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←5ef46d681f01f3e93b561d6a1fb00f8ec3d0a0e7 Add a PyRosetta unit test for BindCraft ---------------- Merge commit message: Fix range of interface_dG on various platforms.

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

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

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

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

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

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

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

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

Failed sub-tests (click for more details):
BindCraft
Test: ubuntu-20.04.clang.python39.PyRosetta.unit

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

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

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

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

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

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

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

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

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

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

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

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

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


branch: rosetta:commits 「№21306」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№759」
Merge: 「de92a3c0d」「47da3cc95」  code diff
Scheduled at: 2026-09-16 15:08:10.208464
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 №759 RosettaCommons/rosetta/main ← roccomoretti/rosetta/clang_23 Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←47da3cc953e57e032681564e988381186c57345b Fix compliation for Clang 23 and GCC 16 ---------------- Merge commit message: Fix compilation on earlier GCCs

...
Test: linux.clang.build.ninja_debug

 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_oas
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 「№21305」
Commited by: Sergey Lyskov
GitHub Pull Request link: 「№760」
Merge: 「de92a3c0d」「0c05d0497」  code diff
Scheduled at: 2026-09-06 14:43:23.179680
gcc-9.gcc.serialization.python310.PyRosetta.notebook gcc-9.gcc.serialization.python311.PyRosetta.notebook gcc-9.gcc.serialization.python312.PyRosetta.notebook gcc-9.gcc.serialization.python313.PyRosetta.notebook gcc-9.gcc.serialization.python314.PyRosetta.notebook gcc-9.gcc.serialization.python37.PyRosetta.notebook gcc-9.gcc.serialization.python38.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 №760 RosettaCommons/rosetta/main ← RosettaCommons/rosetta/lyskov-pyrosetta-notebooks Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←0c05d04971ca0d4aa70f77c41a95832a5a728c30 Add 'pyrosetta-distributed' to package list ---------------- Merge commit message: update PyRosetta.notebooks

...
Test: gcc-9.gcc.serialization.python314.PyRosetta.notebook

Failed sub-tests (click for more details):
16.01-PyData-ddG-pssm
Test: gcc-9.gcc.serialization.python37.PyRosetta.notebook

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:commits 「№21304」
Commited by: Sergey Lyskov
GitHub Pull Request link: 「№760」
Merge: 「de92a3c0d」「ccac7a389」  code diff
Scheduled at: 2026-09-01 15:03:37.385593
gcc-9.gcc.serialization.python311.PyRosetta.notebook gcc-9.gcc.serialization.python312.PyRosetta.notebook gcc-9.gcc.serialization.python313.PyRosetta.notebook gcc-9.gcc.serialization.python314.PyRosetta.notebook gcc-9.gcc.serialization.python37.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 №760 RosettaCommons/rosetta/main ← RosettaCommons/rosetta/lyskov-pyrosetta-notebooks Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←ccac7a38949ea97b2369d9f23309613df4206571 Add 'pyrosetta-distributed' to package list ---------------- Merge commit message: Add 'pyrosetta-distributed' to package list

...
Test: gcc-9.gcc.serialization.python37.PyRosetta.notebook

 View log

Loading...

 View log in dialog  View log in log in separate window
Test: m1.clang.python38.PyRosetta.unit

 View log

Loading...

 View log in dialog  View log in log in separate window


branch: rosetta:commits 「№21303」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№759」
Merge: 「de92a3c0d」「f9a45d834」  code diff
Scheduled at: 2026-08-27 18:28:55.011112
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 №759 RosettaCommons/rosetta/main ← roccomoretti/rosetta/clang_23 Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←f9a45d834e004db67d5f0be4368086c3a68fa7f7 Fix compliation for Clang 23 and GCC 16 ---------------- Merge commit message: Clang wants to blow out the candles on GCC's birthday cake.

...
Test: linux.clang.build.ninja_debug

 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
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 「№21302」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№753」
Merge: 「de92a3c0d」「4d8a7ca17」  code diff
Scheduled at: 2026-08-26 17:03:09.225544
gcc-9.gcc.serialization.python310.PyRosetta.notebook gcc-9.gcc.serialization.python311.PyRosetta.notebook gcc-9.gcc.serialization.python312.PyRosetta.notebook gcc-9.gcc.serialization.python313.PyRosetta.notebook gcc-9.gcc.serialization.python37.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 №753 RosettaCommons/rosetta/main ← roccomoretti/rosetta/bindcraft_python_test Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←4d8a7ca1762d7eac776f19c64a7cb60f799158c1 Add a PyRosetta unit test for BindCraft ---------------- Merge commit message: Change into temporary directory first.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Failed sub-tests (click for more details):
BindCraft
Test: ubuntu-20.04.clang.python39.PyRosetta.unit

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

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

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

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

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

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

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

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

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

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

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

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

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


branch: rosetta:commits 「№21301」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№758」
Merge: 「de92a3c0d」「2b46e950c」  code diff
Scheduled at: 2026-08-26 16:40:26.939548
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 №758 RosettaCommons/rosetta/main ← roccomoretti/rosetta/backrub_segfault Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←2b46e950ceb9ca2b546a1d87366fcc238417b273 Fix Segfault with backrub. ---------------- Merge commit message: Fix Segfault with backrub. While BackrubProtocol clears the BackrubMover's segments between proteins, the bond_angle_map_ data set by add_segment() is not. This means that when you apply backrub to a large protein and then to a small protein, the residue numbers from the large protein cause a segmentation fault in optimize_branch_angles() when the residual data in bond_angle_map_ is applied to the small protein.

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

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


branch: rosetta:commits 「№21300」
Commited by: Rocco Moretti
GitHub commit link: 「de92a3c0dea8a010」
Difference from previous tested commit:  code diff
Commit date: 2026-08-19 21:08:45
PyRosetta.notebook

Add IAM::set_interface(string) for PyRosetta. (#749) BindCraft (and others) use the InterfaceAnalyzerMover.set_interface() function with a string. This was removed during the multi-character chain designation update. This PR puts it back for PyRosetta.



branch: rosetta:commits 「№21299」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№753」
Merge: 「de92a3c0d」「89707ab5e」  code diff
Scheduled at: 2026-08-21 12:29:36.999802
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 №753 RosettaCommons/rosetta/main ← roccomoretti/rosetta/bindcraft_python_test Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←89707ab5ee6bf57cda7c51dbc0f855201bf03bd5 Add a PyRosetta unit test for BindCraft ---------------- Merge commit message: Fix issue with inconsistent packstat

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Failed sub-tests (click for more details):
BindCraft
Test: ubuntu-20.04.clang.python39.PyRosetta.unit

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

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

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

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

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

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

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

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

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

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

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

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

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


branch: rosetta:commits 「№21298」
Commited by: Rocco Moretti
GitHub Pull Request link: 「№753」
Merge: 「de92a3c0d」「5c10c92fe」  code diff
Scheduled at: 2026-08-20 18:51:22.287104
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 №753 RosettaCommons/rosetta/main ← roccomoretti/rosetta/bindcraft_python_test Merge: de92a3c0dea8a010d372a22025e3e50bd4e2f33f←5c10c92fe4852989385dd261fa3e516a762bc395 Add a PyRosetta unit test for BindCraft ---------------- Merge commit message: Add a PyRosetta unit test for BindCraft This doesn't test all of BindCraft, it just attempts to test the PyRosetta portions of it, to make sure we don't have future regressions on the use. One limitation is the lack of dalphaball.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Failed sub-tests (click for more details):
BindCraft
Test: ubuntu-20.04.clang.python39.PyRosetta.unit

Failed sub-tests (click for more details):
BindCraft
Test: ubuntu-22.04.clang.python39.PyRosetta.unit

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

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

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

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

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

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

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

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

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

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

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

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

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


branch: rosetta:commits 「№21297」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№751」
Merge: 「fa5ce2098」「36a3c8012」  code diff
Scheduled at: 2026-08-13 03:12:25.936262
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 №751 RosettaCommons/rosetta/main ← klimaj/rosetta/update_pyrosetta_notebooks Merge: fa5ce209894d40d0cb2bb6676757b7b1ce4abc87←36a3c80127d7ba51b341cf98c3a79f0b87c8e167 Update PyRosetta.notebooks submodule pointer to #117 ---------------- Merge commit message: Update PyRosetta.notebooks submodule

...


branch: rosetta:commits 「№21296」
Commited by: Jason C. Klima
GitHub Pull Request link: 「№751」
Merge: 「fa5ce2098」「b04a17bcb」  code diff
Scheduled at: 2026-08-12 22:54:01.660299
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 №751 RosettaCommons/rosetta/main ← klimaj/rosetta/update_pyrosetta_notebooks Merge: fa5ce209894d40d0cb2bb6676757b7b1ce4abc87←b04a17bcb150b0dfbc76d3688c0c93c268b9db61 Update PyRosetta.notebooks submodule pointer to #117 ---------------- Merge commit message: Update PyRosetta.notebooks submodule



1 2 3 4 5 6 7 8 9 .. 63 >

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