Skip to content

Commit 815bd4f

Browse files
committed
Update workflow files
1 parent ec15ba8 commit 815bd4f

File tree

3 files changed

+13
-30
lines changed

3 files changed

+13
-30
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- uses: actions/download-artifact@v2
6969
with:
7070
name: ql.dbscheme
71-
path: ruby
71+
path: ql
7272
- uses: actions/download-artifact@v2
7373
with:
7474
name: extractor-ubuntu-latest
@@ -82,16 +82,16 @@ jobs:
8282
name: extractor-macos-latest
8383
path: osx64
8484
- run: |
85-
mkdir -p ruby
86-
cp -r codeql-extractor.yml tools ql/src/ql.dbscheme.stats ruby/
87-
mkdir -p ruby/tools/{linux64,osx64,win64}
88-
cp linux64/ql-extractor ruby/tools/linux64/extractor
89-
cp osx64/ql-extractor ruby/tools/osx64/extractor
90-
cp win64/ql-extractor.exe ruby/tools/win64/extractor.exe
91-
chmod +x ruby/tools/{linux64,osx64}/extractor
92-
zip -rq codeql-ruby.zip ruby
85+
mkdir -p ql
86+
cp -r codeql-extractor.yml tools ql/src/ql.dbscheme.stats ql/
87+
mkdir -p ql/tools/{linux64,osx64,win64}
88+
cp linux64/ql-extractor ql/tools/linux64/extractor
89+
cp osx64/ql-extractor ql/tools/osx64/extractor
90+
cp win64/ql-extractor.exe ql/tools/win64/extractor.exe
91+
chmod +x ql/tools/{linux64,osx64}/extractor
92+
zip -rq codeql-ql.zip ql
9393
- uses: actions/upload-artifact@v2
9494
with:
95-
name: codeql-ruby-pack
96-
path: codeql-ruby.zip
95+
name: codeql-ql-pack
96+
path: codeql-ql.zip
9797
retention-days: 1

.github/workflows/dataset_measure.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ jobs:
5050
codeql/codeql database create \
5151
--search-path "${{ github.workspace }}" \
5252
--threads 4 \
53-
--language ruby --source-root "${{ github.workspace }}/repo" \
53+
--language ql --source-root "${{ github.workspace }}/repo" \
5454
"${{ runner.temp }}/database"
5555
- name: Measure database
5656
run: |
5757
mkdir -p "stats/${{ matrix.repo }}"
58-
codeql/codeql dataset measure --threads 4 --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ruby"
58+
codeql/codeql dataset measure --threads 4 --output "stats/${{ matrix.repo }}/stats.xml" "${{ runner.temp }}/database/db-ql"
5959
- uses: actions/upload-artifact@v2
6060
with:
6161
name: measurements

.github/workflows/sync_files.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)