generated from DARMA-tasking/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#97: fix of ubuntu 24 docker image mesa drivers version
- Loading branch information
1 parent
e9bddd8
commit 56edcb2
Showing
6 changed files
with
137 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
.github/workflows/pushbasedockerimage_ubuntu_24.04-gcc_13-vtk_9.3.1-py_3.8.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
name: Build & push base Docker image (add ubuntu_24.04-gcc_12-vtk_9.3.1-py_3.8 image) | ||
|
||
on: | ||
push: | ||
branches: | ||
- 97-add-more-environments-to-test-in-ci | ||
|
||
jobs: | ||
push_to_registry: | ||
name: Build & Push | ||
runs-on: ubuntu-latest | ||
env: | ||
DOCKER_REPOSITORY: lifflander1/vt | ||
strategy: | ||
matrix: | ||
image: [ ubuntu_24.04-gcc_13-vtk_9.3.1-py_3.8 ] | ||
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Extract build configuration | ||
run: | | ||
IFS='_-' read -r -a CONFIG <<< "${{ matrix.image }}" | ||
echo "BASE_IMAGE=${CONFIG[0]}:${CONFIG[1]}" >> $GITHUB_ENV | ||
echo "CC=${CONFIG[2]}-${CONFIG[3]}" >> $GITHUB_ENV | ||
if [[ "${CONFIG[2]}" == "gcc" ]]; then | ||
echo "CXX=g++-${CONFIG[3]}" >> $GITHUB_ENV | ||
echo "GCOV=gcov-${CONFIG[3]}" >> $GITHUB_ENV | ||
elif [[ "${CONFIG[2]}" == "clang" ]]; then | ||
echo "CXX=clang++-${CONFIG[3]}" >> $GITHUB_ENV | ||
echo "GCOV=gcov" >> $GITHUB_ENV | ||
else | ||
exit 1 | ||
fi | ||
echo "VTK_VERSION=${CONFIG[5]}" >> $GITHUB_ENV | ||
echo "PYTHON_VERSION=${CONFIG[7]}" >> $GITHUB_ENV | ||
echo "DOCKER_TAG=${{ matrix.image }}" >> $GITHUB_ENV | ||
- name: Build configuration | ||
run: | | ||
echo "Base image: $BASE_IMAGE" | ||
echo "C Compiler: $CC" | ||
echo "CXX Compiler: $CXX" | ||
echo "GCOV: $GCOV" | ||
echo "VTK: $VTK_VERSION" | ||
echo "Python: $PYTHON_VERSION" | ||
echo "Docker tag: $DOCKER_TAG" | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_TOKEN }} | ||
|
||
- name: Build and push to Docker Hub | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: . | ||
build-args: | | ||
BASE_IMAGE=${{ env.BASE_IMAGE }} | ||
CC=${{ env.CC }} | ||
CXX=${{ env.CXX }} | ||
GCOV=${{ env.GCOV }} | ||
VTK_VERSION=${{ env.VTK_VERSION }} | ||
PYTHON_VERSION=${{ env.PYTHON_VERSION }} | ||
file: ci/docker/make-base-ubuntu.dockerfile | ||
push: true | ||
tags: "${{ env.DOCKER_REPOSITORY }}:${{ env.DOCKER_TAG }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
# This script installs Mesa libraries and utilities | ||
|
||
. /etc/lsb-release | ||
|
||
# Ubuntu 24.04 FIX. | ||
# Error: MESA: error: ZINK: vkCreateInstance failed (VK_ERROR_INCOMPATIBLE_DRIVER) | ||
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 | ||
fi | ||
|
||
apt install -y -q --no-install-recommends \ | ||
libgl1-mesa-dev \ | ||
libglu1-mesa-dev \ | ||
mesa-common-dev \ | ||
libosmesa6-dev \ | ||
mesa-utils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# This script run glxinfo | grep OpenGL version" in Xbfb | ||
|
||
DISPLAY_0=$(echo $DISPLAY) | ||
bash ci/xvfb_start.sh :99 | ||
export DISPLAY=:99 | ||
|
||
glxinfo | grep "OpenGL version" | ||
sudo add-apt-repository ppa:oibaf/graphics-drivers -y | ||
sudo apt update | ||
sudo apt upgrade | ||
glxinfo | grep "OpenGL version" | ||
|
||
# Restore display (none) | ||
bash ci/xvfb_stop.sh :99 | ||
export DISPLAY=DISPLAY_0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
# This script runs a command using Xvfb | ||
|
||
DISPLAY_0=$(echo $DISPLAY) | ||
|
||
XVFB_DISPLAY=":99" | ||
|
||
echo "Starting X Virtual Frame Buffer ($XVFB_DISPLAY)..." | ||
Xvfb $XVFB_DISPLAY -screen 0 1024x768x24 -nolisten tcp > /dev/null 2>&1 & | ||
sleep 1 | ||
|
||
DISPLAY=$XVFB_DISPLAY $1 | ||
|
||
echo "Stopping X Virtual Frame Buffer ($XVFB_DISPLAY)..." | ||
pkill Xvfb | ||
rm -rf /tmp/.X11-unix/X${XVFB_DISPLAY:1} | ||
|
||
export DISPLAY=$DISPLAY_0 | ||
|