mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-12 04:50:35 +00:00
6d85b9e990
* The python we were using on trusty was EOL and so breaking in sphinx. Rather than continuing on trusty, we upgrade to bionic and deliberately target gcc-5 and clang-3.8 (the only thing we care about being old/minspec to ensure we don't break it).
8 lines
235 B
Bash
Executable File
8 lines
235 B
Bash
Executable File
#!/bin/sh
|
|
set -ev
|
|
|
|
sudo apt-get update -qq
|
|
sudo apt-get install --allow-unauthenticated -y -qq libx11-dev mesa-common-dev libgl1-mesa-dev qtbase5-dev libxcb-keysyms1-dev gdb g++-6 python3-pip
|
|
|
|
sudo pip3 install Sphinx sphinx-rtd-theme
|