-
-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ci_add_publish_workflow
- Loading branch information
Showing
201 changed files
with
1,931,892 additions
and
1,782,990 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
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ libpdal-dev | |
libpng-dev | ||
libproj-dev | ||
libreadline-dev | ||
libsvm-dev | ||
libzstd-dev | ||
pdal | ||
proj-bin | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Coverity Scan | ||
on: | ||
workflow_dispatch: # run whenever a contributor calls it | ||
schedule: | ||
- cron: '48 5 * * *' # Run at 05:48 | ||
# Coverity will let GRASS do a scan a maximum of twice per day, so this schedule will help GRASS fit within that limit with some additional space for manual runs | ||
|
||
jobs: | ||
build: | ||
runs-on: [ ubuntu-latest ] | ||
steps: | ||
- name: Checkout Source | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | ||
- name: Coverity Scan | ||
uses: synopsys-sig/synopsys-action@cef5e38596faf5d2787bbff78a5d7255a9f7682b # v1.8.0 | ||
with: | ||
### SCANNING: Required fields | ||
coverity_url: ${{ secrets.COVERITY_URL }} # The URL to Coverity | ||
coverity_user: ${{ secrets.COVERITY_USER }} # The user for the Coverity project | ||
coverity_passphrase: ${{ secrets.COVERITY_PASSPHRASE }} # The password for the Coverity user |
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
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
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
name: Post PR code suggestions | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["ClangFormat Check"] | ||
types: | ||
- completed | ||
permissions: {} | ||
jobs: | ||
post-suggestions: | ||
runs-on: ubuntu-latest | ||
# Only run on failures, since no changes are needed on success | ||
if: > | ||
(github.event.workflow_run.event == 'pull_request' && | ||
github.event.workflow_run.conclusion == 'failure') | ||
permissions: | ||
pull-requests: write | ||
steps: | ||
- name: Create a .git directory needed by reviewdog | ||
run: git init | ||
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4 | ||
id: diff | ||
continue-on-error: true | ||
with: | ||
name: diff | ||
github-token: ${{ github.token }} | ||
run-id: ${{github.event.workflow_run.id }} | ||
- uses: reviewdog/action-setup@3f401fe1d58fe77e10d665ab713057375e39b887 # v1.3.0 | ||
- run: | | ||
GITHUB_ACTIONS="" reviewdog \ | ||
-name="${INPUT_TOOL_NAME:-reviewdog-suggester}" \ | ||
-f=diff \ | ||
-f.diff.strip=1 \ | ||
-filter-mode=nofilter \ | ||
-guess \ | ||
-reporter="github-pr-review" < "${TMPFILE}" | ||
env: | ||
TMPFILE: diff-clang-format.patch | ||
INPUT_TOOL_NAME: clang-format | ||
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CI_COMMIT: ${{ github.event.workflow_run.head_sha }} | ||
CI_REPO_OWNER: ${{ github.event.workflow_run.repository.owner.login }} | ||
CI_REPO_NAME: ${{ github.event.workflow_run.repository.name }} | ||
# CI_PULL_REQUEST: "" # Populated from reviewdog's "-guess" flag since hard to get |
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
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
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
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 |
---|---|---|
|
@@ -49,3 +49,4 @@ test_keyvalue_result.txt | |
|
||
# ignore paths generated by helper tools | ||
node_modules | ||
include/VERSION_GIT |
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
Oops, something went wrong.