Skip to content

Commit d819ae3

Browse files
Test: swap space and use CMAKE_BUILD_PARALLEL_LEVEL: 2
1 parent 0d74e4d commit d819ae3

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/generate_coverage.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,22 @@ jobs:
117117
mamba info
118118
mamba list
119119
120+
- name: Create swap
121+
run: |
122+
sudo fallocate -l 8G /swapfile
123+
sudo chmod 600 /swapfile
124+
sudo mkswap /swapfile
125+
sudo swapon /swapfile
126+
120127
- name: Build dpnp tensor with coverage
121128
id: build_tensor
122129
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
123130
env:
124131
SYCL_CACHE_PERSISTENT: 1
132+
CMAKE_BUILD_PARALLEL_LEVEL: 2
125133
with:
126134
shell: bash
127-
timeout_minutes: 60
135+
timeout_minutes: 90
128136
max_attempts: 5
129137
retry_on: error
130138
command: |

0 commit comments

Comments
 (0)