diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml index 23d6a9f..ff739bf 100644 --- a/.github/workflows/cmake-single-platform.yml +++ b/.github/workflows/cmake-single-platform.yml @@ -21,10 +21,9 @@ jobs: steps: - uses: actions/checkout@v3 - + - name: Sutup Dependencies run: | - git submodule update --init --recursive sudo apt-get update sudo apt-get install python3 python-is-python3 sudo apt-get install -y libx11-dev libgl1-mesa-dev libxrandr-dev libxinerama-dev libxcursor-dev libxi-dev @@ -32,10 +31,18 @@ jobs: sudo apt-get install -y libasound2-dev libglew-dev sudo apt-get install -y portaudio19-dev sudo apt-get install -y libwayland-dev libxkbcommon-dev + + - name: install OpenImageDenoise + run: | + sudo apt-get install -y libtbb-dev git clone --recursive https://github.com/RenderKit/oidn.git cd oidn mkdir build; cd build; cmake ..; make -j; sudo make install + + - name: Update repository + run: | + git submodule update --init --recursive - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.