Skip to content

Commit 515b256

Browse files
[SQUASH_ME] Fixed Issues in Docker
1 parent 5a4da60 commit 515b256

4 files changed

Lines changed: 3 additions & 119 deletions

File tree

.github/scripts/install_dependencies.sh

Lines changed: 0 additions & 60 deletions
This file was deleted.

.github/scripts/install_jammy_dependencies.sh

Lines changed: 0 additions & 56 deletions
This file was deleted.

.github/workflows/nightly_test_manual.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ jobs:
144144
- uses: actions/setup-python@v5
145145
with:
146146
python-version: 3.12.3
147+
147148
- uses: actions/checkout@v4
148149
with:
149150
submodules: 'true'
@@ -153,7 +154,7 @@ jobs:
153154
id: cpu-cores
154155

155156
- name: Install dependencies
156-
run: ./.github/scripts/install_dependencies.sh
157+
run: ./install_apt_packages.sh
157158

158159
- uses: hendrikmuhs/ccache-action@v1.2
159160
with:

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@ ENV PIP_BREAK_SYSTEM_PACKAGES=1
1111
# Install and cleanup is done in one command to minimize the build cache size
1212
RUN apt-get update -qq \
1313
# Extract package names from install_apt_packages.sh
14-
&& sed '/sudo/d' install_apt_packages.sh | sed '/#/d' | sed '/packages_to_install/d' | sed '/if\s.*then$/d' | sed '/else$/d' | sed '/fi$/d' | sed '/echo\s/d' | sed 's/ \\//g' | sed '/^$/d' | sed '/^[[:space:]]*$/d' | sed 's/\s//g' \
14+
&& sed '/sudo/d' install_apt_packages.sh | sed '/#/d' | sed '/packages_to_install/d' | sed '/)/d' | sed '/if\s.*then$/d' | sed '/else$/d' | sed '/fi$/d' | sed '/echo\s/d' | sed 's/ \\//g' | sed '/^$/d' | sed '/^[[:space:]]*$/d' | sed 's/\s//g' \
1515
# Install packages
1616
| xargs apt-get -y install --no-install-recommends \
1717
# Additional packages not listed in install_apt_packages.sh
1818
&& apt-get -y install --no-install-recommends \
1919
wget \
2020
ninja-build \
21-
libeigen3-dev \
2221
python3-pip \
2322
time \
2423
# Install python packages

0 commit comments

Comments
 (0)