Skip to content

Commit

Permalink
Merge pull request #270 from dglaeser/feature/pages-rsync-in-docker-i…
Browse files Browse the repository at this point in the history
…mage

[ci][pages] put rsync pkg in image
  • Loading branch information
dglaeser authored Oct 31, 2024
2 parents e291bf4 + f8de234 commit c674823
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
with:
submodules: true

- name: install-rsync
run: apt-get update && apt-get install -y rsync

- name: configure
run: |
rm -rf build
Expand Down
4 changes: 3 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apt-get update \
&& apt-get install --no-install-recommends --yes \
build-essential \
cmake \
g++-12 g++14 \
g++-12 g++-14 \
clang-16 clang-18 \
python3 \
python3-pip \
Expand All @@ -24,6 +24,8 @@ RUN apt-get update \
software-properties-common \
git \
apt-utils \
# for pages job
rsync \
&& python3 -m venv /gfmt-venv && . /gfmt-venv/bin/activate && pip install vtk \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
Expand Down

0 comments on commit c674823

Please sign in to comment.