We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3860225 commit 5799ec2Copy full SHA for 5799ec2
.github/workflows/test.yaml
@@ -24,6 +24,13 @@ jobs:
24
- name: Checkout code
25
uses: actions/checkout@v3
26
27
+ # See: https://github.com/google/sanitizers/issues/1716
28
+ # Fixes `FATAL: ThreadSanitizer: unexpected memory mapping 0x70498d8ae000-0x70498dd00000` type errors
29
+ - name: Adjust mmap_rnd_bits on ubuntu
30
+ if: startsWith(matrix.os, 'ubuntu')
31
+ run: |
32
+ sudo sysctl vm.mmap_rnd_bits=28
33
+
34
- name: Build vdf-client on Ubuntu
35
if: startsWith(matrix.os, 'ubuntu')
36
run: |
0 commit comments