-
Notifications
You must be signed in to change notification settings - Fork 439
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
Tom Slankard
committed
Oct 4, 2024
1 parent
27bc78f
commit 8868ab6
Showing
389 changed files
with
80,125 additions
and
10,096 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "sdk-extensions"] | ||
path = sdk-extensions | ||
url = ../sdk-extensions.git | ||
branch = master |
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,30 @@ | ||
node { | ||
withEnv(["ARTIFACT_DIR=${WORKSPACE}/artifacts"]) { | ||
withCredentials([string(credentialsId: 'LIBRARY_PATH', variable: 'LIBRARY_PATH')]) { | ||
if (params.CLEAN_WORKSPACE) { | ||
echo "CLEAN_WORKSPACE set: deleting everything" | ||
cleanWs() | ||
} | ||
dir('ouster-sdk') { | ||
checkout([ | ||
$class : 'GitSCM', | ||
branches : [[name: "*/${BRANCH_NAME}"]], | ||
extensions : scm.extensions + [ | ||
[$class: 'CleanCheckout'], | ||
[$class : 'SubmoduleOption', | ||
disableSubmodules : false, parentCredentials: true, | ||
recursiveSubmodules: true, | ||
trackingSubmodules : true | ||
] | ||
], | ||
userRemoteConfigs: scm.userRemoteConfigs | ||
]) | ||
} | ||
|
||
dir(env.ARTIFACT_DIR) { deleteDir() } | ||
|
||
run_pipeline = load "${LIBRARY_PATH}" | ||
run_pipeline() | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: OusterSDK | ||
Upstream-Contact: Ouster Sensor SDK Developers <[email protected]> | ||
Source: https://github.com/ouster-lidar/ouster_example | ||
Source: https://github.com/ouster-lidar/ouster_sdk | ||
|
||
Files: * | ||
Copyright: 2018-2022 Ouster, Inc | ||
|
@@ -11,6 +11,10 @@ Files: include/optional-lite/* | |
Copyright: 2014-2021 Martin Moene | ||
License: BSL-1.0 | ||
|
||
Files: include/jsoncons* | ||
Copyright Daniel Parker 2013 - 2020 | ||
License: BSL-1.0 | ||
|
||
License: BSD-3-Clause | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
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,39 @@ | ||
# Ouster Security Policy | ||
|
||
## Overview | ||
|
||
This security policy outlines the security support commitments for ouster-sdk users. | ||
|
||
[Email]([email protected]) to learn more about Ouster's security SLAs and process. | ||
|
||
## BSD-3-Clause License Users | ||
|
||
- **Security SLA:** No security Service Level Agreement (SLA) is provided. | ||
- **Release Schedule:** Releases are planned every 3 months. These releases | ||
will contain all security fixes implemented up to that point. | ||
- **Version Support:** Security patches are only provided for the current | ||
release version. | ||
|
||
## Reporting a Vulnerability | ||
|
||
Please [email]([email protected]) to report a security vulnerability. | ||
|
||
Please include the requested information listed below (as much as you can provide) to help us better understand | ||
the nature and scope of the possible issue: | ||
|
||
- Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.) | ||
- Full paths of source file(s) related to the manifestation of the issue | ||
- The location of the affected source code (tag/branch/commit or direct URL) | ||
- Any special configuration required to reproduce the issue | ||
- Step-by-step instructions to reproduce the issue | ||
- Proof-of-concept or exploit code (if possible) | ||
Impact of the issue, including how an attacker might exploit the issue | ||
- This information will help us triage your report more quickly. | ||
|
||
### Preferred Languages | ||
We prefer all communications to be in English. | ||
|
||
### Response time | ||
You should receive a response within 24 hours. | ||
|
||
If for some reason you do not, please follow up via email to ensure we received your original message. |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Allow downstream code to depend on source transparently | ||
if(NOT TARGET EXAMPLE_INCLUDED) | ||
add_custom_target(EXAMPLE_INCLUDED) | ||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/.. ouster_example EXCLUDE_FROM_ALL) | ||
add_subdirectory(${CMAKE_CURRENT_LIST_DIR}/.. ouster_sdk EXCLUDE_FROM_ALL) | ||
endif() |
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.