File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -39,33 +39,37 @@ jobs:
39
39
40
40
41
41
- name : Install QLT
42
+ id : install-qlt
42
43
uses : ./.github/actions/install-qlt
43
44
with :
44
45
qlt-version : ' latest'
45
46
add-to-path : true
46
47
47
48
- name : Install CodeQL
48
- if : steps.cache -codeql.outputs.cache-hit != 'true'
49
+ id : install -codeql
49
50
uses : ./.github/actions/install-codeql
50
51
with :
51
52
codeql-cli-version : ${{ matrix.codeql_cli }}
52
53
codeql-stdlib-version : ${{ matrix.codeql_standard_library }}
53
- codeql-home : ${{ github.workspace }}/codeql_home
54
- add-to-path : false
54
+ add-to-path : true
55
55
56
56
- name : Verify Versions of Tooling
57
57
shell : bash
58
58
run : |
59
- echo $PATH
59
+ echo "PATH: $PATH"
60
+
61
+ echo "CodeQL Home: ${{ steps.install-codeql.outputs.codeql-home }}"
60
62
echo -e "Checking CodeQL Version:"
61
- ${{ github.workspace }}/codeql_home/codeql/codeql --version
63
+ codeql --version
64
+
62
65
echo -e "Checking QLT Version:"
66
+ echo "QLT Home: ${{ steps.install-qlt.outputs.qlt-home }}"
63
67
qlt version
64
68
65
69
- name : Install QL Packs
66
70
shell : bash
67
71
run : |
68
- find . -name 'qlpack.yml' | xargs -L1 /opt/codeql_home/codeql/ codeql pack install
72
+ find . -name 'qlpack.yml' | xargs -L1 codeql pack install
69
73
70
74
- name : Run test suites
71
75
id : run-test-suites
You can’t perform that action at this time.
0 commit comments