Skip to content

Commit ee29779

Browse files
committed
add apt install wget
1 parent f262d1e commit ee29779

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.github/workflows/ci_foxy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ jobs:
2424
steps:
2525
- name: Install OpenVINO
2626
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y wget
2729
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
2830
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
2931
echo "deb https://apt.repos.intel.com/openvino/2024 ubuntu20 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2024.list
3032
sudo apt-get update
31-
sudo apt install openvino-2024.3.0
33+
sudo apt install -y openvino-2024.3.0
3234
- uses: actions/checkout@v4
3335
- uses: ros-tooling/setup-ros@v0.7
3436
with:

.github/workflows/ci_humble.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ jobs:
2424
steps:
2525
- name: Install OpenVINO
2626
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y wget
2729
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
2830
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
2931
echo "deb https://apt.repos.intel.com/openvino/2024 ubuntu22 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2024.list
3032
sudo apt-get update
31-
sudo apt install openvino-2024.3.0
33+
sudo apt install -y openvino-2024.3.0
3234
- uses: actions/checkout@v4
3335
- uses: ros-tooling/setup-ros@v0.7
3436
with:

.github/workflows/ci_jazzy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ jobs:
2424
steps:
2525
- name: Install OpenVINO
2626
run: |
27+
sudo apt-get update
28+
sudo apt-get install -y wget
2729
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
2830
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB
2931
echo "deb https://apt.repos.intel.com/openvino/2024 ubuntu24 main" | sudo tee /etc/apt/sources.list.d/intel-openvino-2024.list
3032
sudo apt-get update
31-
sudo apt install openvino-2024.3.0
33+
sudo apt install -y openvino-2024.3.0
3234
- uses: actions/checkout@v4
3335
- uses: ros-tooling/setup-ros@v0.7
3436
with:

0 commit comments

Comments
 (0)