Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e245382 commit 4ef4053Copy full SHA for 4ef4053
1 file changed
.github/workflows/dataset_measure.yml
@@ -12,6 +12,8 @@ on:
12
13
jobs:
14
measure:
15
+ env:
16
+ CODEQL_THREADS: 4 # TODO: remove this once it's set by the CLI
17
strategy:
18
fail-fast: false
19
matrix:
@@ -27,7 +29,6 @@ jobs:
27
29
unzip -q codeql-linux64.zip
28
30
env:
31
GITHUB_TOKEN: ${{ github.token }}
- CODEQL_THREADS: 4 # TODO: remove this once it's set by the CLI
32
- uses: actions/cache@v2
33
with:
34
path: |
@@ -53,7 +54,7 @@ jobs:
53
54
- name: Measure database
55
run: |
56
mkdir -p "stats/${{ matrix.repo }}"
- codeql/codeql dataset measure --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ruby"
57
+ codeql/codeql dataset measure --threads 4 --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ruby"
58
- uses: actions/upload-artifact@v2
59
60
name: measurements
0 commit comments