Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
96dacae
docs: add implementation plan for CI engine-grouped testing optimization
bpamiri Mar 12, 2026
ea27cee
ci: reduce SQL Server memory from 4GB to 2GB for CI
bpamiri Mar 12, 2026
305c641
ci: reduce Oracle memory from 2GB to 1.5GB for CI
bpamiri Mar 12, 2026
7e5d7ba
fix: re-enable BoxLang volume mounts for local dev parity
bpamiri Mar 12, 2026
01b2a2a
ci: restructure test matrix from 42 jobs to 8 engine-grouped jobs
bpamiri Mar 12, 2026
56cd21d
ci: add checks and pull-requests write permissions for test reporting
bpamiri Mar 12, 2026
389cc11
ci: add permissions to snapshot workflow for test reporting
bpamiri Mar 12, 2026
a6cc1d3
fix(ci): separate reload request from test request to handle 302 redi…
bpamiri Mar 12, 2026
466eb25
fix(ci): use curl -L to follow reload redirect in single request
bpamiri Mar 12, 2026
07be486
fix(ci): remove reload=true — not needed and breaks Adobe CF
bpamiri Mar 12, 2026
b8c98a6
ci: bump actions/labeler v5 → v6 for Node.js 24 compatibility
bpamiri Mar 12, 2026
b70a435
fix(ci): bump actions to Node 24, restart engine between DB runs
bpamiri Mar 12, 2026
29c8870
Bump upload-artifact and download-artifact to v6 for Node.js 24
bpamiri Mar 12, 2026
1aa54ec
Fix JUnit XML int parsing and force Node.js 24 for download-artifact
bpamiri Mar 13, 2026
91297d7
Post test matrix grid as PR comment
bpamiri Mar 13, 2026
35ca3d2
Fix json_test_case_results: use boolean not string
bpamiri Mar 13, 2026
7f90943
Use comma as thousands separator in test results comment
bpamiri Mar 13, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ on:
branches:
- develop

permissions:
contents: read
pull-requests: write
checks: write

jobs:
label:
name: Auto-Label PR
Expand All @@ -17,7 +22,7 @@ jobs:
contents: read
pull-requests: write
steps:
- uses: actions/labeler@v5
- uses: actions/labeler@v6
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
branches:
- develop

permissions:
contents: read
checks: write
pull-requests: write

env:
WHEELS_PRERELEASE: true

Expand Down
Loading
Loading