Skip to content

Commit b59d782

Browse files
authored
Fix segfaults -- CRC64NVME on machines with disabled AVX and uri parsing corner case. (#597)
1 parent c4930d2 commit b59d782

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.builder/actions/crt_size_check.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def run(self, env):
1111
# Maximum package size (for current platform) in bytes
1212
# NOTE: if you increase this, you might also need to increase the
1313
# limit in continuous-delivery/pack.sh
14-
max_size = 8_250_000
14+
max_size = 9_000_000
1515
# size of current folder
1616
folder_size = 0
1717
# total size in bytes

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ permissions:
2121

2222
jobs:
2323
linux-compat:
24-
runs-on: ubuntu-24.04 # latest
24+
runs-on: ubuntu-22.04 # temporarily downgrade to old ubuntu until https://github.com/actions/runner-images/issues/11471 resolves
2525
strategy:
2626
fail-fast: false
2727
matrix:

crt/aws-lc

crt/s2n

Submodule s2n updated from ffe0bf4 to 6cc9f53

0 commit comments

Comments
 (0)