We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b87a03d commit 64b1771Copy full SHA for 64b1771
.github/workflows/fuzz.yaml
@@ -92,7 +92,7 @@ jobs:
92
fuzz:
93
if: ${{ github.repository == 'chainguard-dev/malcontent' && needs.discover.outputs.targets != '[]' }}
94
needs: discover
95
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.target.test == 'FuzzExtractArchive' && 'ubuntu-latest-8-core' || 'ubuntu-latest' }}
96
permissions:
97
contents: read
98
strategy:
@@ -107,7 +107,7 @@ jobs:
107
--cap-add SETUID
108
--cap-drop ALL
109
--cgroupns private
110
- --cpu-shares=4096
+ --cpu-shares=${{ matrix.target.test == 'FuzzExtractArchive' && '8192' || '4096' }}
111
--memory-swappiness=0
112
--security-opt no-new-privileges
113
--ulimit core=0
0 commit comments