Skip to content
Closed
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
1 change: 1 addition & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ concurrency:

jobs:
build:
if: false # Temporarily disabled for Linux parallelism testing
runs-on: [Windows, self-hosted]
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/check-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
types: [checks_requested]
jobs:
check-formatting:
if: false # Temporarily disabled for Linux parallelism testing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
34 changes: 21 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:

build-linux-release-gcc-x86_64:
needs: [filter]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled - focusing on debug only
uses: ./.github/workflows/ci-slang-build.yml
with:
os: linux
Expand All @@ -68,7 +68,7 @@ jobs:

build-linux-release-gcc-wasm:
needs: [filter]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled - focusing on debug only
uses: ./.github/workflows/ci-slang-build.yml
with:
os: linux
Expand All @@ -80,7 +80,7 @@ jobs:
# macOS builds
build-macos-debug-clang-aarch64:
needs: [filter]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-build.yml
with:
os: macos
Expand All @@ -91,7 +91,7 @@ jobs:

build-macos-release-clang-aarch64:
needs: [filter]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-build.yml
with:
os: macos
Expand All @@ -103,7 +103,7 @@ jobs:
# Windows builds (self-hosted)
build-windows-debug-cl-x86_64-gpu:
needs: [filter]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-build.yml
with:
os: windows
Expand All @@ -114,7 +114,7 @@ jobs:

build-windows-release-cl-x86_64-gpu:
needs: [filter]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-build.yml
with:
os: windows
Expand All @@ -127,6 +127,10 @@ jobs:
test-linux-debug-gcc-x86_64:
needs: [filter, build-linux-debug-gcc-x86_64]
if: needs.filter.outputs.should-run == 'true'
strategy:
fail-fast: false
matrix:
iteration: [1, 2, 3, 4, 5] # Run 5 times to catch intermittent failures
uses: ./.github/workflows/ci-slang-test.yml
with:
os: linux
Expand All @@ -135,11 +139,15 @@ jobs:
config: debug
runs-on: '["ubuntu-22.04"]'
test-category: smoke
server-count: 1
server-count: 8

test-linux-release-gcc-x86_64:
needs: [filter, build-linux-release-gcc-x86_64]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled - focusing on debug only
strategy:
fail-fast: false
matrix:
iteration: [1, 2, 3, 4, 5] # Run 5 times to catch intermittent failures
uses: ./.github/workflows/ci-slang-test.yml
with:
os: linux
Expand All @@ -148,12 +156,12 @@ jobs:
config: release
runs-on: '["ubuntu-22.04"]'
test-category: full
server-count: 1
server-count: 8

# macOS tests
test-macos-debug-clang-aarch64:
needs: [filter, build-macos-debug-clang-aarch64]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-test.yml
with:
os: macos
Expand All @@ -166,7 +174,7 @@ jobs:

test-macos-release-clang-aarch64:
needs: [filter, build-macos-release-clang-aarch64]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-test.yml
with:
os: macos
Expand All @@ -181,7 +189,7 @@ jobs:
# Windows GPU tests (self-hosted)
test-windows-debug-cl-x86_64-gpu:
needs: [filter, build-windows-debug-cl-x86_64-gpu]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-test.yml
with:
os: windows
Expand All @@ -194,7 +202,7 @@ jobs:

test-windows-release-cl-x86_64-gpu:
needs: [filter, build-windows-release-cl-x86_64-gpu]
if: needs.filter.outputs.should-run == 'true'
if: false # Temporarily disabled for Linux parallelism testing
uses: ./.github/workflows/ci-slang-test.yml
with:
os: windows
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/compile-regression-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
if: false # Temporarily disabled for Linux parallelism testing
timeout-minutes: 100
continue-on-error: true
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/falcor-compiler-perf-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
if: false # Temporarily disabled for Linux parallelism testing
timeout-minutes: 100
continue-on-error: false
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/falcor-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ concurrency:
cancel-in-progress: true
jobs:
build:
if: false # Temporarily disabled for Linux parallelism testing
timeout-minutes: 100
continue-on-error: true
strategy:
Expand Down
Loading