diff options
| -rw-r--r-- | .github/workflows/ci-slang-build.yml | 1 | ||||
| -rw-r--r-- | .github/workflows/ci-slang-test.yml | 3 | ||||
| -rw-r--r-- | .gitignore | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci-slang-build.yml b/.github/workflows/ci-slang-build.yml index b5a492543..efb4fe4a4 100644 --- a/.github/workflows/ci-slang-build.yml +++ b/.github/workflows/ci-slang-build.yml @@ -34,6 +34,7 @@ on: jobs: build: runs-on: ${{ fromJSON(inputs.runs-on) }} + timeout-minutes: 60 defaults: run: diff --git a/.github/workflows/ci-slang-test.yml b/.github/workflows/ci-slang-test.yml index da15f7321..ec2eb6a8f 100644 --- a/.github/workflows/ci-slang-test.yml +++ b/.github/workflows/ci-slang-test.yml @@ -38,6 +38,7 @@ on: jobs: test-slang: runs-on: ${{ fromJSON(inputs.runs-on) }} + timeout-minutes: 30 defaults: run: shell: bash @@ -119,6 +120,7 @@ jobs: # expensive slang-rhi tests are excluded with -tce option, because they are not relevant for Slang. test-slang-rhi: runs-on: ${{ fromJSON(inputs.runs-on) }} + timeout-minutes: 30 if: inputs.full-gpu-tests && (github.event_name == 'pull_request' || inputs.config == 'release') defaults: run: @@ -152,6 +154,7 @@ jobs: # This is to reduce the CI load but do some check on pull requests. test-slangpy: runs-on: ${{ fromJSON(inputs.runs-on) }} + timeout-minutes: 30 if: inputs.full-gpu-tests && (github.event_name == 'pull_request' || inputs.config == 'release') defaults: run: diff --git a/.gitignore b/.gitignore index 12a8c8588..dac907f55 100644 --- a/.gitignore +++ b/.gitignore @@ -80,6 +80,7 @@ prelude/*.h.cpp /multiple-definitions.hlsl /external/slang-llvm/ /external/slang-glslang/ +/external/mimalloc/ build/**/*.tlog build/**/*.lastbuildstate |
