Update cmake-single-platform.yml
This commit is contained in:
parent
aa7bf32940
commit
22e6967ae2
1 changed files with 9 additions and 2 deletions
9
.github/workflows/cmake-single-platform.yml
vendored
9
.github/workflows/cmake-single-platform.yml
vendored
|
|
@ -24,7 +24,6 @@ jobs:
|
|||
|
||||
- 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,11 +31,19 @@ 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.
|
||||
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue