Docs: record where CI is configured in AGENTS.md - #7236
Merged
Conversation
WarpX splits its CI across two systems, and the split is not obvious: `.github/workflows/` holds the build-only jobs, while `.azure-pipelines.yml` builds the dimensionality/feature matrix and runs the actual `ctest` suite. The consequence worth writing down is that the Azure matrix carries the `WARPX_CMAKE_FLAGS` that decide which optional subsystems get compiled at all -- `WarpX_PETSC=ON`, for instance, is set there for the 1D, 2D and RZ jobs and nowhere in `.github/workflows/`. Looking at only one of the two locations makes it easy to wrongly conclude that an `#ifdef`-guarded code path has no coverage. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
RemiLehe
commented
Sep 2, 2026
Co-authored-by: Remi Lehe <remi.lehe@normalesup.org>
RemiLehe
commented
Sep 2, 2026
GPU tests live in a third place: `.gitlab/ci.yaml`, run on the HPSF Frank cluster through a GitHub-to-GitLab mirror rather than as a GitHub Actions workflow. Every `runs-on:` in `.github/workflows/` is a stock GitHub-hosted image, so `cuda.yml` / `hip.yml` / `intel.yml` only compile; nothing there executes on a GPU. Worth noting that it is label-gated (`bot: run GPU`), so it does not appear in a default PR's checks. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
ax3l
approved these changes
Sep 3, 2026
ax3l
left a comment
Member
There was a problem hiding this comment.
Nice! You were right to push back -- .... Classic phrase :D
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
In several conversations with Claude Opus 5, I have noticed that it seems to accidentally overlook
.azure-pipelines.yml. For instance:This PR updates the
AGENTS.mdto prevent this error from recurring.