Skip to content

Commit

Permalink
re-enable workflow on push
Browse files Browse the repository at this point in the history
  • Loading branch information
jpbusch committed Jun 9, 2023
1 parent 26e0947 commit fa0ff08
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 50 deletions.
48 changes: 23 additions & 25 deletions .github/workflows/ros.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,17 @@ jobs:
uses: ika-rwth-aachen/docker-ros@${{ github.event.inputs.docker-ros-git-ref }}
with: '{ "base-image": "rwthika/ros:latest", "command": "roscore", "platform": "amd64", "target": "dev,run", "build-context": "ros1", "image-tag": "ros1", "enable-industrial-ci": "true"}'

# TODO: re-enable once docker-ros action is on main
# - name: docker-ros
# if: ${{ github.event_name == 'push' }}
# uses: ika-rwth-aachen/docker-ros@main
# with:
# base-image: rwthika/ros:latest
# command: roscore
# platform: amd64,arm64
# target: dev,run
# build-context: ros1
# image-tag: ros1
# enable-industrial-ci: true
- name: docker-ros
if: ${{ github.event_name == 'push' }}
uses: ika-rwth-aachen/docker-ros@main
with:
base-image: rwthika/ros:latest
command: roscore
platform: amd64,arm64
target: dev,run
build-context: ros1
image-tag: ros1
enable-industrial-ci: true

advanced:
name: advanced
Expand All @@ -53,16 +52,15 @@ jobs:
uses: ika-rwth-aachen/docker-ros@${{ github.event.inputs.docker-ros-git-ref }}
with: '{ "base-image": "rwthika/ros:latest", "command": "roscore", "platform": "${{ matrix.platform }}", "target": "${{ matrix.target }}", "build-context": "ros1", "image-tag": "ros1", "enable-industrial-ci": "true", "enable-singlearch-push": "true"}'

# TODO: re-enable once docker-ros action is on main
# - name: docker-ros
# if: ${{ github.event_name == 'push' }}
# uses: ika-rwth-aachen/docker-ros@main
# with:
# base-image: rwthika/ros:latest
# command: roscore
# platform: ${{ matrix.platform }}
# target: ${{ matrix.target }}
# build-context: ros1
# image-tag: ros1
# enable-industrial-ci: true
# enable-singlearch-push: true
- name: docker-ros
if: ${{ github.event_name == 'push' }}
uses: ika-rwth-aachen/docker-ros@main
with:
base-image: rwthika/ros:latest
command: roscore
platform: ${{ matrix.platform }}
target: ${{ matrix.target }}
build-context: ros1
image-tag: ros1
enable-industrial-ci: true
enable-singlearch-push: true
48 changes: 23 additions & 25 deletions .github/workflows/ros2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,17 @@ jobs:
uses: ika-rwth-aachen/docker-ros@${{ github.event.inputs.docker-ros-git-ref }}
with: '{ "base-image": "rwthika/ros2:latest", "command": "ros2 topic list", "platform": "amd64", "target": "dev,run", "build-context": "ros2", "image-tag": "ros2", "enable-industrial-ci": "true"}'

# TODO: re-enable once docker-ros action is on main
# - name: docker-ros
# if: ${{ github.event_name == 'push' }}
# uses: ika-rwth-aachen/docker-ros@main
# with:
# base-image: rwthika/ros2:latest
# command: ros2 topic list
# platform: amd64
# target: dev,run
# build-context: ros2
# image-tag: ros2
# enable-industrial-ci: true
- name: docker-ros
if: ${{ github.event_name == 'push' }}
uses: ika-rwth-aachen/docker-ros@main
with:
base-image: rwthika/ros2:latest
command: ros2 topic list
platform: amd64
target: dev,run
build-context: ros2
image-tag: ros2
enable-industrial-ci: true

advanced:
name: advanced
Expand All @@ -53,16 +52,15 @@ jobs:
uses: ika-rwth-aachen/docker-ros@${{ github.event.inputs.docker-ros-git-ref }}
with: '{ "base-image": "rwthika/ros2:latest", "command": "ros2 topic list", "platform": "${{ matrix.platform }}", "target": "${{ matrix.target }}", "build-context": "ros2", "image-tag": "ros2", "enable-industrial-ci": "true", "enable-singlearch-push": "true"}'

# TODO: re-enable once docker-ros action is on main
# - name: docker-ros
# if: ${{ github.event_name == 'push' }}
# uses: ika-rwth-aachen/docker-ros@main
# with:
# base-image: rwthika/ros2:latest
# command: ros2 topic list
# platform: ${{ matrix.platform }}
# target: ${{ matrix.target }}
# build-context: ros2
# image-tag: ros2
# enable-industrial-ci: true
# enable-singlearch-push: true
- name: docker-ros
if: ${{ github.event_name == 'push' }}
uses: ika-rwth-aachen/docker-ros@main
with:
base-image: rwthika/ros2:latest
command: ros2 topic list
platform: ${{ matrix.platform }}
target: ${{ matrix.target }}
build-context: ros2
image-tag: ros2
enable-industrial-ci: true
enable-singlearch-push: true

0 comments on commit fa0ff08

Please sign in to comment.