Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/sycl-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,9 @@ jobs:
if: ${{ !cancelled() && steps.build.conclusion == 'success' }}
uses: ./devops/actions/source-tbb

- name: Setup Vulkan environment
uses: ./devops/actions/setup-vulkan/linux

- name: Build E2E tests
if: ${{ inputs.e2e_binaries_artifact && !cancelled() && steps.build.conclusion == 'success' }}
uses: ./devops/actions/run-tests/linux/e2e
Expand Down
1 change: 1 addition & 0 deletions devops/containers/ubuntu2204_build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ RUN apt update && apt install -yqq rocm-dev && \
# Fix Vulkan install inside container
# https://stackoverflow.com/questions/74965945/vulkan-is-unable-to-detect-nvidia-gpu-from-within-a-docker-container-when-using
RUN apt-get update && \
apt-get install -y libegl1 && \
apt-get install -y --no-install-recommends --download-only libnvidia-gl-565 && \
dpkg-deb --extract /var/cache/apt/archives/libnvidia-gl-565_*.deb extracted && \
cp -R ./extracted/usr/* /usr/ && \
Expand Down
2 changes: 2 additions & 0 deletions devops/containers/ubuntu2404_build.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ USER root
RUN apt-get update -qq && apt-get install --no-install-recommends -yqq curl ca-certificates
RUN curl -sSL https://apt.llvm.org/llvm-snapshot.gpg.key -o /etc/apt/trusted.gpg.d/apt.llvm.org.asc
RUN echo 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble main' > /etc/apt/sources.list.d/llvm.list
RUN echo 'deb http://apt.llvm.org/noble/ llvm-toolchain-noble-22 main' > /etc/apt/sources.list.d/llvm.list

# Install SYCL prerequisites
COPY scripts/install_build_tools.sh /install.sh
Expand Down Expand Up @@ -49,6 +50,7 @@ RUN apt update && apt install -yqq rocm-dev && \
# Fix Vulkan install inside container
# https://stackoverflow.com/questions/74965945/vulkan-is-unable-to-detect-nvidia-gpu-from-within-a-docker-container-when-using
RUN apt-get update && \
apt-get install -y libegl1 && \
apt-get install -y --no-install-recommends --download-only libnvidia-gl-565 && \
dpkg-deb --extract /var/cache/apt/archives/libnvidia-gl-565_*.deb extracted && \
cp -R ./extracted/usr/* /usr/ && \
Expand Down
4 changes: 4 additions & 0 deletions devops/scripts/install_vulkan.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#!/bin/bash

set -x
set -e
set -o pipefail
VULKAN_VER="1.4.335.0"
wget https://sdk.lunarg.com/sdk/download/$VULKAN_VER/linux/vulkansdk-linux-x86_64-$VULKAN_VER.tar.xz -O vulkan.tar.xz
tar xf vulkan.tar.xz
Expand Down
Loading