-
Notifications
You must be signed in to change notification settings - Fork 0
docs(agents): code-owner gates disabled org-wide until multiple maintainers exist #208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
seonghobae
wants to merge
4
commits into
master
Choose a base branch
from
cwl/codeowner-policy-note
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
0203144
docs(agents): code-owner gates disabled org-wide until multiple maint…
seonghobae 646a40e
docs: wrap code-owner policy note to 80 columns (MD013)
seonghobae 4b07e5d
ci: build stringfish from source until binaries are rebuilt for RcppP…
38a53ac
ci: prebuild stringfish from real CRAN source before dependency install
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -35,6 +35,17 @@ jobs: | |
| r-version: release | ||
| use-public-rspm: true | ||
|
|
||
| # stringfish binaries (CRAN/P3M) still link the legacy TBB from | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2 Prebuild runs before setup-r-dependencies with floating latest versions, so the workaround can be silently defeated
Suggested diff```diff
- name: Set up R package dependencies
uses: r-lib/actions/setup-r-dependencies@d3c5be51b12e724e68f33216ca3c148b66d5f0b6
with:
extra-packages: any::rcmdcheck
needs: check
+ # Move the stringfish source build AFTER dependency setup so the
+ # library cache/pak cannot restore the legacy-TBB binary over it.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2 Unannounced CI workaround bundled into a docs-only PR with an unverified correctness premise
Suggested diff- # stringfish binaries (CRAN/P3M) still link the legacy TBB from
- # RcppParallel <6.2 and fail to load against RcppParallel 6.2.0's oneTBB,
- # which breaks the SimDesign source build inside setup-r-dependencies.
- # Pre-build stringfish from real CRAN source (P3M serves binaries even
- # via its source API); pak then keeps the installed copy. Drop once
- # upstream binaries are rebuilt.
- - name: Prebuild stringfish from source (TBB mismatch with RcppParallel 6.2.0)
- run: |
- Rscript -e 'install.packages(c("Rcpp", "RcppParallel"), repos = Sys.getenv("RSPM", unset = "https://cloud.r-project.org"))' \
- -e 'install.packages("stringfish", type = "source", repos = "https://cloud.r-project.org")'
-
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2 Floating-version prebuild runs before setup-r-dependencies and can be silently defeated on cache-hit runs
Suggested diff+ - name: Verify stringfish load after dependency setup
+ run: Rscript -e 'stopifnot(requireNamespace("stringfish"))'
|
||
| # RcppParallel <6.2 and fail to load against RcppParallel 6.2.0's oneTBB, | ||
| # which breaks the SimDesign source build inside setup-r-dependencies. | ||
| # Pre-build stringfish from real CRAN source (P3M serves binaries even | ||
| # via its source API); pak then keeps the installed copy. Drop once | ||
| # upstream binaries are rebuilt. | ||
| - name: Prebuild stringfish from source (TBB mismatch with RcppParallel 6.2.0) | ||
| run: | | ||
| Rscript -e 'install.packages(c("Rcpp", "RcppParallel"), repos = Sys.getenv("RSPM", unset = "https://cloud.r-project.org"))' \ | ||
| -e 'install.packages("stringfish", type = "source", repos = "https://cloud.r-project.org")' | ||
|
|
||
| - name: Set up R package dependencies | ||
| uses: r-lib/actions/setup-r-dependencies@d3c5be51b12e724e68f33216ca3c148b66d5f0b6 | ||
| with: | ||
|
|
||
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2 Unannounced CI workaround bundled into a docs-only PR with an unverified correctness premise
.github/workflows/r.yml:38Suggested diff