-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install docker-compose in ros container
Signed-off-by: Aaron Chong <[email protected]>
- Loading branch information
1 parent
1b945df
commit c1fc27d
Showing
2 changed files
with
6 additions
and
6 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 |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- name: Install dependencies | ||
run: | | ||
sudo apt update && sudo apt install python3-pip -y | ||
sudo apt update && sudo apt install python3-pip docker-compose -y | ||
pip3 install eclipse-zenoh==0.11.0 pycdr2 --break-system-packages | ||
- uses: ros-tooling/[email protected] | ||
|
@@ -26,8 +26,8 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v1 | ||
|
||
- name: Start containers | ||
run: docker compose -f ".github/integration-tests/docker-compose.yaml" up -d --build | ||
- name: Start test fixture containers | ||
run: docker-compose -f ".github/integration-tests/docker-compose.yaml" up -d --build | ||
|
||
- name: build and test | ||
uses: ros-tooling/[email protected] | ||
|
@@ -37,6 +37,6 @@ jobs: | |
package-name: free_fleet free_fleet_adapter free_fleet_examples | ||
target-ros2-distro: ${{ matrix.ros_distribution }} | ||
|
||
- name: Stop containers | ||
- name: Stop test fixture containers | ||
if: always() | ||
run: docker compose -f ".github/integration-tests/docker-compose.yaml" down | ||
run: docker-compose -f ".github/integration-tests/docker-compose.yaml" down |
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