Update cmake-single-platform.yml
This commit is contained in:
parent
aa7bf32940
commit
22e6967ae2
1 changed files with 9 additions and 2 deletions
11
.github/workflows/cmake-single-platform.yml
vendored
11
.github/workflows/cmake-single-platform.yml
vendored
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue