internalize loadTransform(RTCFormat, const float*) #574
Workflow file for this run
This file contains hidden or 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
| ## Copyright 2024 Intel Corporation | |
| ## SPDX-License-Identifier: Apache-2.0 | |
| name: continuous (public) | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| rocky-8: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: rockylinux:8 | |
| steps: | |
| - name: Install packages (rocky 8) | |
| run: | | |
| yum -y install epel-release | |
| yum -y install gcc-c++ clang tar git-lfs make tbb-devel freeglut-devel glfw-devel libXmu-devel libXi-devel python3 | |
| yum -y install cmake | |
| yum -y install libXcursor-devel libXi-devel libXinerama-devel libXrandr-devel | |
| yum -y install ncurses-compat-libs | |
| yum -y install environment-modules | |
| dnf makecache --refresh | |
| dnf config-manager --set-enabled powertools | |
| dnf -y update | |
| dnf -y install ninja-build | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Build and Run | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DBUILD_TESTING=ON -DEMBREE_TUTORIALS=ON -DEMBREE_ISPC_SUPPORT=OFF -DEMBREE_TESTING_INTENSITY=3 .. | |
| make -j$(nproc) | |
| ctest | |
| ubuntu-24-tbb-and-ispc-from-os: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ubuntu:24.04 | |
| steps: | |
| - name: Install packages (ubuntu 24.04) | |
| run: | | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install g++ cmake git-lfs freeglut3-dev libglfw3-dev libxmu-dev libxi-dev unzip xorg-dev pip libtbb-dev ispc | |
| apt-get -y install libopenimageio-dev | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Build and Run | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -DBUILD_TESTING=ON -DEMBREE_TUTORIALS=ON -DEMBREE_ISPC_SUPPORT=ON -DEMBREE_TESTING_INTENSITY=3 .. | |
| make -j$(nproc) | |
| ctest | |
| ubuntu-24-tbb-and-ispc-prebuilt: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ubuntu:24.04 | |
| steps: | |
| - name: Install packages (ubuntu 24.04) | |
| run: | | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install g++ cmake git-lfs freeglut3-dev libglfw3-dev libxmu-dev libxi-dev unzip xorg-dev pip | |
| apt-get -y install libopenimageio-dev | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Build and Run | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -D EMBREE_EXTRA_OPTIONS="-DBUILD_TESTING=ON -DEMBREE_TUTORIALS=ON -DEMBREE_ISPC_SUPPORT=ON -DEMBREE_TESTING_INTENSITY=3" ../superbuild | |
| cmake --build . | |
| cd embree/build | |
| ctest | |
| ubuntu-24-tbb-src-ispc-prebuilt: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: ubuntu:24.04 | |
| steps: | |
| - name: Install packages (ubuntu 24.04) | |
| run: | | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install g++ cmake git-lfs freeglut3-dev libglfw3-dev libxmu-dev libxi-dev unzip xorg-dev pip | |
| apt-get -y install libopenimageio-dev | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Build and Run | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake -D BUILD_TBB_FROM_SOURCE=ON -D EMBREE_EXTRA_OPTIONS="-DBUILD_TESTING=ON -DEMBREE_TUTORIALS=ON -DEMBREE_ISPC_SUPPORT=ON -DEMBREE_TESTING_INTENSITY=3" ../superbuild | |
| cmake --build . | |
| cd embree/build | |
| ctest |