-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,8 +47,8 @@ jobs: | |
with: | ||
submodules: 'recursive' | ||
|
||
- name: Setup Environment | ||
run: cmake -E make_directory $QDLDL_BUILD_DIR_PREFIX | ||
# - name: Setup Environment | ||
# run: cmake -E make_directory $QDLDL_BUILD_DIR_PREFIX | ||
|
||
- name: Configure | ||
shell: bash | ||
|
@@ -86,12 +86,22 @@ jobs: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: '${{ github.workspace }}/build/coverage.info' | ||
|
||
- name: "List dir" | ||
if: ${{ matrix.analysis == 'ON' }} | ||
shell: bash | ||
run: ls -la ${{ github.workspace }}/build/ | ||
|
||
- name: Merge diagnostics | ||
if: ${{ matrix.analysis == 'ON' }} | ||
uses: microsoft/[email protected] | ||
with: | ||
# Command to be sent to SARIF Multitool | ||
command: 'merge ${{ github.workspace }}/build/*.sarif --recurse true file.sarif --output-directory=${{ github.workspace }}/build/ --output-file=gcc.sarif' | ||
command: 'merge ${{ github.workspace }}/build/*.sarif --recurse true --output-directory=${{ github.workspace }}/build/ --output-file=gcc.sarif' | ||
|
||
- name: "List dir" | ||
if: ${{ matrix.analysis == 'ON' }} | ||
shell: bash | ||
run: ls -la ${{ github.workspace }}/build/ | ||
|
||
- name: Upload diagnostics | ||
if: ${{ matrix.analysis == 'ON' }} | ||
|