MINOR: Remove ARM/PowerPC builds from Jenkinsfile#12380
MINOR: Remove ARM/PowerPC builds from Jenkinsfile#12380cmccabe merged 2 commits intoapache:trunkfrom
Conversation
|
The I can also take a look when I have time. Thanks. |
|
We can probably do without these agent checks. The idea behind them was to fail-fast when the node provider wasn't available (rather than waiting for the 2hr timeout). But, the end result is pretty much the same (aborted build status). I wonder if we can set up a different Jenkins job that runs on trunk only for ARM and PPC. I doubt we have gained much from running these builds on each PR. Seems they mainly add noise to our build status. |
|
+1 for removing these builds from PRs. Generally, we should only include widely used platforms where we also have stable build machines. |
|
Using different Jenkins jobs that runs on trunk seems to be a good tradeoff. |
|
I suppose that we could use the “when” clause like here: Line 170 in 8f64477 We can definitely do this separately. |
|
Yeah, these builds are out of control, failing all the time. It's probably more appropriate to make these nightly builds anyway. We can discuss this once we've stabilized the build. |
…(5 August 2022) Version related conflicts: * Jenkinsfile * gradle.properties * streams/quickstart/java/pom.xml * streams/quickstart/java/src/main/resources/archetype-resources/pom.xml * streams/quickstart/pom.xml * tests/kafkatest/__init__.py * tests/kafkatest/version.py * commit 'add7cd85baa61cd0e1430': (66 commits) KAFKA-14136 Generate ConfigRecord for brokers even if the value is unchanged (apache#12483) HOTFIX / KAFKA-14130: Reduce RackAwarenesssTest to unit Test (apache#12476) MINOR: Remove ARM/PowerPC builds from Jenkinsfile (apache#12380) KAFKA-14111 Fix sensitive dynamic broker configs in KRaft (apache#12455) KAFKA-13877: Fix flakiness in RackAwarenessIntegrationTest (apache#12468) KAFKA-14129: KRaft must check manual assignments for createTopics are contiguous (apache#12467) KAFKA-13546: Do not fail connector validation if default topic creation group is explicitly specified (apache#11615) KAFKA-14122: Fix flaky test DynamicBrokerReconfigurationTest#testKeyStoreAlter (apache#12452) MINOR; Use right enum value for broker registration change (apache#12236) MINOR; Synchronize access to snapshots' TreeMap (apache#12464) MINOR; Bump trunk to 3.4.0-SNAPSHOT (apache#12463) MINOR: Stop logging 404s at ERROR level in Connect KAFKA-14095: Improve handling of sync offset failures in MirrorMaker (apache#12432) Minor: enable index for emit final sliding window (apache#12461) MINOR: convert some more junit tests to support KRaft (apache#12456) KAFKA-14108: Ensure both JUnit 4 and JUnit 5 tests run (apache#12441) MINOR: Remove code of removed metric (apache#12453) MINOR: Update comment on verifyTaskGenerationAndOwnership method in DistributedHerder KAFKA-14012: Add warning to closeQuietly documentation about method references of null objects (apache#12321) MINOR: Fix static mock usage in ThreadMetricsTest (apache#12454) ...
Reviewers: Colin P. McCabe <cmccabe@apache.org>, Ismael Juma <ismael@juma.me.uk>
We see the ARM agent check timing out frequently. I think the 5 minute timeout might be too aggressive. I think the original intent of this check was to prevent one of these agent check timeouts from propagating to the top level, but that never really worked. So perhaps we don't need these.
Committer Checklist (excluded from commit message)