Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
build-macos:
name: Build and Test (macOS)
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
--skip LargeBlock \
--skip EndToEnd \
--skip ClientServer
timeout-minutes: 20
timeout-minutes: 60

- name: Build (release)
run: swift build -c release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
code-coverage:
name: Code Coverage
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand All @@ -103,7 +103,7 @@ jobs:
--skip LargeBlock \
--skip EndToEnd \
--skip ClientServer
timeout-minutes: 20
timeout-minutes: 60

- name: Generate coverage report
run: |
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
part1-conformance:
name: Part 1 (Core) Conformance
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
part2-conformance:
name: Part 2 (Extensions) Conformance
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
part3-part10-conformance:
name: Part 3 (MJ2) and Part 10 (JP3D) Conformance
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
part15-conformance:
name: Part 15 (HTJ2K) Conformance
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
part4-conformance:
name: Part 4 (Conformance Final) Validation
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
jp3d-conformance:
name: Part 10 (JP3D) Conformance
runs-on: macos-15
timeout-minutes: 20
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/dicomkit-downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
dicomkit-build:
name: DICOMKit builds against J2KSwift HEAD
runs-on: macos-15
timeout-minutes: 25
timeout-minutes: 75

steps:
- name: Checkout J2KSwift (this PR / commit)
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
run: |
cd DICOMKit
swift build
timeout-minutes: 15
timeout-minutes: 30

- name: Run DICOMKit curated test set
# Excludes 9 pre-existing unrelated failures (see CROSS_CODEC_DICOM_REPORT.md):
Expand All @@ -119,5 +119,5 @@ jobs:
--skip "DICOMXML" \
--skip "test_allocateBlock_allocatesFirstBlock" \
--skip "WorkitemBuilder/testRoundTripWithSequences"
timeout-minutes: 20
timeout-minutes: 60
continue-on-error: true
2 changes: 1 addition & 1 deletion .github/workflows/interactive-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
headless-tests:
name: Headless Test Run (${{ github.event.inputs.playlist || 'Quick Smoke Test' }})
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jp3d-compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
jp3d-compliance:
name: JP3D Part 4 Compliance Tests
runs-on: macos-15
timeout-minutes: 20
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
benchmark-macos:
name: Performance Benchmarks (macOS - Apple Silicon)
runs-on: macos-15
timeout-minutes: 45
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
regression-detection:
name: Performance Regression Detection
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75
needs: [ benchmark-macos ]
if: github.event_name == 'pull_request'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/swift-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
test-macos:
name: Test on macOS
runs-on: macos-15
timeout-minutes: 30
timeout-minutes: 75

steps:
- name: Checkout code
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
--skip LargeBlock \
--skip EndToEnd \
--skip ClientServer
timeout-minutes: 20
timeout-minutes: 60

- name: Build release
run: swift build -c release -v
Loading