forked from tier4/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ansible/plotjuggler): fix bugs (tier4#246)
* ci: add setup-universe.yaml Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * add -v Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * use -vvv Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * fix style Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> * upgrade pyOpenSSL Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
- Loading branch information
1 parent
d23a700
commit 17596c3
Showing
4 changed files
with
28 additions
and
4 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 |
---|---|---|
|
@@ -13,4 +13,4 @@ jobs: | |
|
||
- name: Run setup script | ||
run: | | ||
./setup-dev-env.sh -y docker | ||
./setup-dev-env.sh -y -v docker |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: setup-universe | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
setup-universe: | ||
runs-on: ubuntu-latest | ||
container: ubuntu:20.04 | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Run setup script | ||
run: | | ||
./setup-dev-env.sh -y -v --no-nvidia universe |
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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
- name: Install apt packages | ||
# Workaround for https://serverfault.com/questions/1099606/ansible-openssl-error-with-apt-module | ||
- name: Upgrade pyOpenSSL | ||
become: true | ||
ansible.builtin.pip: | ||
name: pyOpenSSL | ||
state: latest | ||
executable: pip3 | ||
|
||
- name: Install plotjuggler | ||
become: true | ||
ansible.builtin.apt: | ||
name: | ||
- ros-galactic-plotjuggler-ros | ||
- ros-{{ rosdistro }}-plotjuggler-ros | ||
state: latest | ||
update_cache: true |
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