Skip to content

Commit

Permalink
ci: Fixups (#1971)
Browse files Browse the repository at this point in the history
- Disable rollup job as it's not needed at the moment
- Ignore some compat changes.
  - CP0006: Allow members to be added to interfaces.
  • Loading branch information
KazWolfe authored Jul 24, 2024
1 parent 818eec9 commit 0684c31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
foreach ($file in $FILES_TO_VALIDATE) {
$testout = ""
Write-Output "::group::=== API COMPATIBILITY CHECK: ${file} ==="
apicompat -l "left\${file}" -r "right\${file}" | Tee-Object -Variable testout
apicompat -l "left\${file}" -r "right\${file}" --noWarn "$(NoWarn);CP0006" | Tee-Object -Variable testout
Write-Output "::endgroup::"
if ($testout -ne "APICompat ran successfully without finding any breaking changes.") {
Write-Output "::error::${file} did not pass. Please review it for problems."
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/rollup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ jobs:
strategy:
matrix:
branches:
- new_im_hooks
# - apiX
- WORKFLOW_DISABLED_REMOVE_BEFORE_RUNNING

defaults:
run:
Expand Down

0 comments on commit 0684c31

Please sign in to comment.