-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Run integration tests from ci #403
base: main
Are you sure you want to change the base?
Conversation
🦙 MegaLinter status:
|
Descriptor | Linter | Files | Fixed | Errors | Elapsed time |
---|---|---|---|---|---|
✅ ACTION | actionlint | 7 | 0 | 0.05s | |
✅ CPP | clang-format | 14 | 3 | 0 | 0.53s |
✅ DOCKERFILE | hadolint | 1 | 0 | 0.13s | |
✅ JSON | jsonlint | 7 | 0 | 0.19s | |
✅ JSON | prettier | 7 | 3 | 0 | 0.85s |
markdownlint | 6 | 1 | 7 | 1.02s | |
markdown-link-check | 6 | 2 | 53.07s | ||
✅ MARKDOWN | markdown-table-formatter | 6 | 1 | 0 | 0.34s |
✅ REPOSITORY | checkov | yes | no | 24.57s | |
✅ REPOSITORY | git_diff | yes | no | 0.17s | |
✅ REPOSITORY | grype | yes | no | 8.83s | |
✅ REPOSITORY | ls-lint | yes | no | 0.06s | |
✅ REPOSITORY | secretlint | yes | no | 34.24s | |
✅ REPOSITORY | trivy | yes | no | 4.5s | |
✅ REPOSITORY | trivy-sbom | yes | no | 0.1s | |
✅ REPOSITORY | trufflehog | yes | no | 9.31s | |
lychee | 33 | 1 | 87.48s | ||
✅ YAML | prettier | 10 | 2 | 0 | 0.85s |
✅ YAML | v8r | 10 | 0 | 5.92s | |
✅ YAML | yamllint | 10 | 0 | 0.36s |
See detailed report in MegaLinter reports
…ecation of SetShared
…n-test # Conflicts: # CMakeLists.txt
…ture/ci-integration-test
|
||
on: | ||
push: | ||
branches: [ "main" ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
branches: [ "main" ] | |
branches: ["main"] |
- language: c-cpp | ||
build-mode: autobuild |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
- language: c-cpp | |
build-mode: autobuild | |
- language: c-cpp | |
build-mode: autobuild |
- name: Checkout repository | ||
uses: actions/checkout@v4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout repository | |
uses: actions/checkout@v4 |
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v3 | ||
with: | ||
languages: ${{ matrix.language }} | ||
build-mode: ${{ matrix.build-mode }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
build-mode: ${{ matrix.build-mode }} | |
# If you wish to specify custom queries, you can do so here or in a config file. | |
# By default, queries listed here will override any specified in a config file. | |
# Prefix the list here with "+" to use these queries and those in the config file. | |
# Initializes the CodeQL tools for scanning. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
build-mode: ${{ matrix.build-mode }} | |
# If you wish to specify custom queries, you can do so here or in a config file. | |
# By default, queries listed here will override any specified in a config file. | |
# Prefix the list here with "+" to use these queries and those in the config file. |
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | ||
# queries: security-extended,security-and-quality |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | |
# queries: security-extended,security-and-quality | |
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs | |
# queries: security-extended,security-and-quality |
# If the analyze step fails for one of the languages you are analyzing with | ||
# "We were unable to automatically build your code", modify the matrix above | ||
# to set the build mode to "manual" for that language. Then modify this step | ||
# to build your code. | ||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | ||
- if: matrix.build-mode == 'manual' | ||
shell: bash | ||
run: | | ||
echo 'If you are using a "manual" build mode for one or more of the' \ | ||
'languages you are analyzing, replace this with the commands to build' \ | ||
'your code, for example:' | ||
echo ' make bootstrap' | ||
echo ' make release' | ||
exit 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
# If the analyze step fails for one of the languages you are analyzing with | |
# "We were unable to automatically build your code", modify the matrix above | |
# to set the build mode to "manual" for that language. Then modify this step | |
# to build your code. | |
# ℹ️ Command-line programs to run using the OS shell. | |
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | |
- if: matrix.build-mode == 'manual' | |
shell: bash | |
run: | | |
echo 'If you are using a "manual" build mode for one or more of the' \ | |
'languages you are analyzing, replace this with the commands to build' \ | |
'your code, for example:' | |
echo ' make bootstrap' | |
echo ' make release' | |
exit 1 | |
# If the analyze step fails for one of the languages you are analyzing with | |
# "We were unable to automatically build your code", modify the matrix above | |
# to set the build mode to "manual" for that language. Then modify this step | |
# to build your code. | |
# ℹ️ Command-line programs to run using the OS shell. | |
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun | |
- if: matrix.build-mode == 'manual' | |
shell: bash | |
run: | | |
echo 'If you are using a "manual" build mode for one or more of the' \ | |
'languages you are analyzing, replace this with the commands to build' \ | |
'your code, for example:' | |
echo ' make bootstrap' | |
echo ' make release' | |
exit 1 |
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v3 | ||
with: | ||
category: "/language:${{matrix.language}}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{matrix.language}}" |
…n-test # Conflicts: # integration_test/runner/CMakeLists.txt # integration_test/runner/FixtureEcho.hpp # integration_test/runner/Hooks.cpp
…ips-software/amp-hal-st into feature/ci-integration-test
"extensions": [ | ||
"ms-vscode.vscode-serial-monitor" | ||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[MegaLinter] reported by reviewdog 🐶
"extensions": [ | |
"ms-vscode.vscode-serial-monitor" | |
] | |
"extensions": ["ms-vscode.vscode-serial-monitor"] |
No description provided.