forked from TAMS-Group/bio_ik
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tyler Weaver <[email protected]>
- Loading branch information
Showing
4 changed files
with
28 additions
and
5 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 |
---|---|---|
|
@@ -14,6 +14,12 @@ jobs: | |
env: | ||
ROS_DISTRO: rolling | ||
NOT_TEST_BUILD: true | ||
UPSTREAM_WORKSPACE: upstream.repos | ||
UPSTREAM_CMAKE_ARGS: > | ||
-DCMAKE_BUILD_TYPE=Release | ||
-DCMAKE_EXE_LINKER_FLAGS=-fuse-ld=lld | ||
-DCMAKE_SHARED_LINKER_FLAGS=-fuse-ld=lld | ||
-DCMAKE_MODULE_LINKER_FLAGS=-fuse-ld=lld | ||
# Clear the ccache stats before and log the stats after the build | ||
AFTER_SETUP_CCACHE: ccache --zero-stats --max-size=10.0G | ||
AFTER_BUILD_TARGET_WORKSPACE: ccache --show-stats | ||
|
@@ -24,11 +30,20 @@ jobs: | |
colcon build --event-handlers console_direct+ desktop_notification- status- terminal_title- --cmake-args -DENABLE_DOXYGEN=ON --cmake-target doxygen-docs | ||
CCACHE_DIR: ${{ github.workspace }}/.ccache | ||
BASEDIR: ${{ github.workspace }}/.work | ||
ADDITIONAL_DEBS: doxygen graphviz | ||
ADDITIONAL_DEBS: doxygen graphviz lld | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache upstream workspace | ||
uses: pat-s/[email protected] | ||
with: | ||
path: ${{ env.BASEDIR }}/upstream_ws | ||
key: ${{ env.CACHE_PREFIX }}-${{ github.run_id }} | ||
restore-keys: ${{ env.CACHE_PREFIX }} | ||
env: | ||
CACHE_PREFIX: upstream_ws-doxygen-${{ hashFiles('upatream.repos', '.github/workflows/ci.yaml') }} | ||
# The target directory cache doesn't include the source directory because | ||
# that comes from the checkout. See "prepare target_ws for cache" task below | ||
- name: Cache target workspace | ||
|
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