Skip to content

Commit 7dc3d7d

Browse files
committed
CI: remove unneeded PATH definitions
1 parent 4d35d8d commit 7dc3d7d

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.github/workflows/csv-coverage-pr-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@ jobs:
5151
- name: Generate CSV files on merge commit of the PR
5252
run: |
5353
echo "Running generator on merge"
54-
PATH="$PATH:codeql-cli/codeql" python merge/misc/scripts/library-coverage/generate-report.py ci merge merge
54+
python merge/misc/scripts/library-coverage/generate-report.py ci merge merge
5555
mkdir out_merge
5656
cp framework-coverage-*.csv out_merge/
5757
cp framework-coverage-*.rst out_merge/
5858
- name: Generate CSV files on base commit of the PR
5959
run: |
6060
echo "Running generator on base"
61-
PATH="$PATH:codeql-cli/codeql" python base/misc/scripts/library-coverage/generate-report.py ci base base
61+
python base/misc/scripts/library-coverage/generate-report.py ci base base
6262
mkdir out_base
6363
cp framework-coverage-*.csv out_base/
6464
cp framework-coverage-*.rst out_base/

.github/workflows/csv-coverage-timeseries.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ jobs:
2525
uses: ./.github/actions/fetch-codeql
2626
- name: Build modeled package list
2727
run: |
28-
CLI=$(realpath "codeql-cli/codeql")
29-
echo $CLI
30-
PATH="$PATH:$CLI" python script/misc/scripts/library-coverage/generate-timeseries.py codeqlModels
28+
python script/misc/scripts/library-coverage/generate-timeseries.py codeqlModels
3129
- name: Upload timeseries CSV
3230
uses: actions/upload-artifact@v3
3331
with:

.github/workflows/csv-coverage-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: ./.github/actions/fetch-codeql
3030
- name: Generate coverage files
3131
run: |
32-
PATH="$PATH:codeql-cli/codeql" python ql/misc/scripts/library-coverage/generate-report.py ci ql ql
32+
python ql/misc/scripts/library-coverage/generate-report.py ci ql ql
3333
3434
- name: Create pull request with changes
3535
env:

.github/workflows/csv-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: ./.github/actions/fetch-codeql
3030
- name: Build modeled package list
3131
run: |
32-
PATH="$PATH:codeql-cli/codeql" python script/misc/scripts/library-coverage/generate-report.py ci codeqlModels script
32+
python script/misc/scripts/library-coverage/generate-report.py ci codeqlModels script
3333
- name: Upload CSV package list
3434
uses: actions/upload-artifact@v3
3535
with:

0 commit comments

Comments
 (0)