Skip to content

Commit

Permalink
Correct compression commands
Browse files Browse the repository at this point in the history
  • Loading branch information
light-tech committed Sep 17, 2022
1 parent b49d3f9 commit fb32627
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
cache: 'pip'
- run: pip3 install -r requirements.txt
- run: ./build_ros2.sh ${{ matrix.platformArch }}
- run: tar czf ros2_${{ matrix.platformArch }}.tar.xz ros2_${{ matrix.platformArch }}/
- run: tar cJf ros2_${{ matrix.platformArch }}.tar.xz ros2_${{ matrix.platformArch }}/
- uses: actions/upload-artifact@v3
with:
name: ros2_${{ matrix.platformArch }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
cache: 'pip'
- run: pip3 install -r requirements.txt
- run: ./build_ros2_macos.sh
- run: tar czf ros2_base.tar.xz base_ws/install/
- run: tar cJf ros2.tar.xz ros2/
- uses: actions/upload-artifact@v3
with:
name: ros2_base
path: ros2_base.tar.xz
name: ros2
path: ros2.tar.xz
2 changes: 1 addition & 1 deletion build_ros2_macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ touch base_ws/src/ros2/rcl_logging/rcl_logging_spdlog/AMENT_IGNORE
touch base_ws/src/ros2/orocos_kdl_vendor/python_orocos_kdl_vendor/AMENT_IGNORE

cd base_ws
colcon build --merge-install --cmake-force-configure --cmake-args -DBUILD_TESTING=NO -DTHIRDPARTY=FORCE -DCOMPILE_TOOLS=NO -DFORCE_BUILD_VENDOR_PKG=ON -DBUILD_MEMORY_TOOLS=OFF -DRCL_LOGGING_IMPLEMENTATION=rcl_logging_noop -DCMAKE_PREFIX_PATH=$REPO_ROOT/deps
colcon build --install-base $REPO_ROOT/ros2 --merge-install --cmake-force-configure --cmake-args -DBUILD_TESTING=NO -DTHIRDPARTY=FORCE -DCOMPILE_TOOLS=NO -DFORCE_BUILD_VENDOR_PKG=ON -DBUILD_MEMORY_TOOLS=OFF -DRCL_LOGGING_IMPLEMENTATION=rcl_logging_noop -DCMAKE_PREFIX_PATH=$REPO_ROOT/deps

0 comments on commit fb32627

Please sign in to comment.