Skip to content

Commit

Permalink
#97: rename a workflow for ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Sep 12, 2024
1 parent 7d7887f commit 2fe257c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build & push base Docker image (add ubuntu_24.04-gcc_12-vtk_9.3.1-py_3.8_3.12 image)
name: Build & push base Docker image (add ubuntu_*-py.all images)

on:
push:
Expand Down
6 changes: 3 additions & 3 deletions ci/docker/make-base-ubuntu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ COPY ci/setup_vtk.sh /opt/scripts/setup_vtk.sh
ENV DEBIAN_FRONTEND=noninteractive

# Setup common tools and compiler
RUN apt update -y -q && \
apt install -y -q --no-install-recommends \
RUN apt-get update -y -q && \
apt-get install -y -q --no-install-recommends \
${CC} \
${CXX} \
git \
Expand Down Expand Up @@ -72,6 +72,6 @@ RUN VTK_VERSION=${VTK_VERSION} \
bash /opt/scripts/setup_vtk.sh

# Clean apt
RUN apt clean && rm -rf /var/lib/apt/lists/*
RUN apt-get clean && rm -rf /var/lib/apt/lists/*

RUN echo "Base creation success"
4 changes: 2 additions & 2 deletions ci/setup_mesa.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
if [ "$DISTRIB_RELEASE" == "24.04" ]; then
echo "FIX: Using latest MESA drivers (dev) for Ubuntu 24.04 to fix MESA errors !"
add-apt-repository ppa:oibaf/graphics-drivers -y
apt update
apt-get update
fi

apt install -y -q --no-install-recommends \
apt-get install -y -q --no-install-recommends \
libgl1-mesa-dev \
libglu1-mesa-dev \
mesa-common-dev \
Expand Down

0 comments on commit 2fe257c

Please sign in to comment.