Skip to content

Commit

Permalink
feat: add ros 2 source build pipeline
Browse files Browse the repository at this point in the history
* feat: added source build pipeline that builds all packages

* refactor: update .gitmodules to use https instead of ssh

* refactor: remove ros2.repos since it is unused
  • Loading branch information
kluge7 authored Oct 20, 2024
2 parents e98f36f + f71a5e9 commit d55cf46
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/source-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Source Build
# Build all ROS 2 packages in the repository and submodules
on:
workflow_dispatch:
schedule:
- cron: "0 1 * * *" # Runs daily to check for depency issues or flaking tests
jobs:
source-build:
uses: vortexntnu/vortex-ci/.github/workflows/reusable-source-build.yaml@main
with:
ros_distro: 'humble'
os_name: 'ubuntu-22.04'
ref: ${{ github.ref_name }}
vcs_repo_file_url: ""
skip_tests: true
gcc_version: '13'
8 changes: 4 additions & 4 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[submodule "submodules/vortex-aruco-detection"]
path = submodules/vortex-aruco-detection
url = git@github.com:vortexntnu/vortex-aruco-detection.git
url = https://github.com/vortexntnu/vortex-aruco-detection.git
[submodule "submodules/vortex-image-filtering"]
path = submodules/vortex-image-filtering
url = git@github.com:vortexntnu/vortex-image-filtering.git
url = https://github.com/vortexntnu/vortex-image-filtering.git
[submodule "submodules/vortex-blackfly-driver"]
path = submodules/vortex-blackfly-driver
url = git@github.com:vortexntnu/vortex-blackfly-driver.git
url = https://github.com/vortexntnu/vortex-blackfly-driver.git
[submodule "submodules/vortex-vkf"]
path = submodules/vortex-vkf
url = git@github.com:vortexntnu/vortex-vkf.git
url = https://github.com/vortexntnu/vortex-vkf.git

0 comments on commit d55cf46

Please sign in to comment.