Skip to content

Commit c8efbf4

Browse files
committed
.
1 parent 4b1e038 commit c8efbf4

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/docker/ubuntu-22.04.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ ARG BASE_DEPS="\
2121
build-essential \
2222
cmake \
2323
git \
24-
gnupg \
25-
libtool"
24+
libtool \
25+
wget"
2626

2727
# UMF's dependencies
2828
ARG UMF_DEPS="\

.github/docker/ubuntu-24.04.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ ARG BASE_DEPS="\
2121
build-essential \
2222
cmake \
2323
git \
24-
gnupg"
24+
gnupg \
25+
wget"
2526

2627
# UMF's dependencies
2728
ARG UMF_DEPS="\

.github/workflows/reusable_basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
run: |
144144
sudo apt-get remove --purge -y cmake
145145
sudo apt-get update
146-
sudo apt-get install -y wget
146+
# sudo apt-get install -y wget
147147
wget https://github.com/Kitware/CMake/releases/download/v${{matrix.cmake_ver}}/cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh
148148
chmod +x cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh
149149
sudo ./cmake-${{matrix.cmake_ver}}-Linux-x86_64.sh --skip-license --prefix=/usr/local
@@ -157,7 +157,7 @@ jobs:
157157
if: matrix.compiler.cxx == 'icpx'
158158
run: |
159159
sudo apt-get update
160-
sudo apt-get install -y gpg-agent wget
160+
# sudo apt-get install -y gpg-agent wget
161161
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
162162
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
163163
sudo apt-get update

0 commit comments

Comments
 (0)