Update cmake-single-platform.yml

This commit is contained in:
Ilya Shurupov 2024-06-19 12:41:32 +03:00
parent aa7bf32940
commit 22e6967ae2

View file

@ -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.