We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d74e4d commit a621aaaCopy full SHA for a621aaa
.github/workflows/generate_coverage.yaml
@@ -117,14 +117,23 @@ jobs:
117
mamba info
118
mamba list
119
120
+ - name: Create swap space
121
+ run: |
122
+ sudo fallocate -l 8G /swapfile
123
+ sudo chmod 600 /swapfile
124
+ sudo mkswap /swapfile
125
+ sudo swapon /swapfile
126
+ sudo swapon --show
127
+
128
- name: Build dpnp tensor with coverage
129
id: build_tensor
130
uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 # v3.0.2
131
env:
132
SYCL_CACHE_PERSISTENT: 1
133
+ CMAKE_BUILD_PARALLEL_LEVEL: 2
134
with:
135
shell: bash
- timeout_minutes: 60
136
+ timeout_minutes: 90
137
max_attempts: 5
138
retry_on: error
139
command: |
0 commit comments