-
Notifications
You must be signed in to change notification settings - Fork 16
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' of https://github.com/MBTMBTMBT/LASR_ben
- Loading branch information
Showing
220 changed files
with
5,424 additions
and
2,658 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Continuous | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
jobs: | ||
QC: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout Repository and Submodules | ||
uses: actions/checkout@v4 | ||
- name: Quality Control | ||
uses: "./.github/workflows/qc" | ||
Documentation: | ||
runs-on: ubuntu-20.04 | ||
env: | ||
DOCS_DEPLOY_KEY: ${{ secrets.DOCS_DEPLOY_KEY }} | ||
steps: | ||
- name: Checkout Repository and Submodules | ||
uses: actions/checkout@v4 | ||
with: | ||
path: "src/lasr-base" | ||
- name: Build & Deploy Documentation | ||
uses: "./src/lasr-base/.github/workflows/docs" |
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,48 @@ | ||
name: Build & Deploy Documentation | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
|
||
- name: Install ROS Noetic | ||
shell: bash | ||
run: | | ||
sudo add-apt-repository universe | ||
sudo add-apt-repository restricted | ||
sudo add-apt-repository multiverse | ||
sudo apt update | ||
sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $(lsb_release -sc) main" > /etc/apt/sources.list.d/ros-latest.list' | ||
sudo apt install curl # if you haven't already installed curl | ||
curl -s https://raw.githubusercontent.com/ros/rosdistro/master/ros.asc | sudo apt-key add - | ||
sudo apt update | ||
sudo apt install ros-noetic-ros-base python3-catkin-tools | ||
- name: Build documentation package | ||
shell: bash | ||
run: | | ||
source /opt/ros/noetic/setup.bash | ||
catkin build documentation | ||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
|
||
- name: Build documentation | ||
shell: bash | ||
run: | | ||
source /opt/ros/noetic/setup.bash | ||
source devel/setup.bash | ||
rosrun documentation build.py | ||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: github.event_name != 'pull_request' && github.ref_name == 'main' | ||
with: | ||
deploy_key: ${{ env.DOCS_DEPLOY_KEY }} | ||
publish_dir: ./src/lasr-base/documentation/web/build | ||
external_repository: lasr-at-home/docs |
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
name: Pull Request | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '*' | ||
jobs: | ||
QC: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Quality Control | ||
uses: "./.github/workflows/qc" |
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,12 @@ | ||
name: Quality Control | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
|
||
- name: Python Formatting | ||
uses: psf/black@stable | ||
with: | ||
options: "--check --verbose" | ||
jupyter: true | ||
version: "24.3.0" |
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
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
1 change: 0 additions & 1 deletion
1
common/navigation/tiago_controllers/src/tiago_controllers/__init__.py
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,3 +1,2 @@ | ||
from .controllers.base_controller import BaseController | ||
from .controllers.head_controller import HeadController | ||
|
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.