Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a01fc84

Browse files
committedJan 2, 2025·
CI debug
1 parent eea97ae commit a01fc84

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed
 

‎.github/workflows/ci.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
with:
4848
submodules: 'recursive'
4949

50-
- name: Setup Environment
51-
run: cmake -E make_directory $QDLDL_BUILD_DIR_PREFIX
50+
# - name: Setup Environment
51+
# run: cmake -E make_directory $QDLDL_BUILD_DIR_PREFIX
5252

5353
- name: Configure
5454
shell: bash
@@ -86,13 +86,23 @@ jobs:
8686
github-token: ${{ secrets.GITHUB_TOKEN }}
8787
path-to-lcov: '${{ github.workspace }}/build/coverage.info'
8888

89+
- name: "List dir"
90+
if: ${{ matrix.analysis == 'ON' }}
91+
shell: bash
92+
run: ls -la ${{ github.workspace }}/build/
93+
8994
- name: Merge diagnostics
9095
if: ${{ matrix.analysis == 'ON' }}
9196
uses: microsoft/sarif-actions@v0.1
9297
with:
9398
# Command to be sent to SARIF Multitool
9499
command: 'merge ${{ github.workspace }}/build/*.sarif --recurse true file.sarif --output-directory=${{ github.workspace }}/build/ --output-file=gcc.sarif'
95100

101+
- name: "List dir"
102+
if: ${{ matrix.analysis == 'ON' }}
103+
shell: bash
104+
run: ls -la ${{ github.workspace }}/build/
105+
96106
- name: Upload diagnostics
97107
if: ${{ matrix.analysis == 'ON' }}
98108
uses: github/codeql-action/upload-sarif@v3

0 commit comments

Comments
 (0)
Please sign in to comment.