Skip to content

Commit 5bca024

Browse files
Merge pull request #1334 from LizardByte/nightly
v0.21.0
2 parents 31e8b79 + 81d5816 commit 5bca024

File tree

260 files changed

+13098
-4270
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+13098
-4270
lines changed

.codeql-prebuild-cpp.sh

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# install dependencies for C++ analysis
2+
3+
sudo apt-get update -y
4+
sudo apt-get install -y \
5+
build-essential \
6+
gcc-10 \
7+
g++-10 \
8+
libayatana-appindicator3-dev \
9+
libavdevice-dev \
10+
libboost-filesystem-dev \
11+
libboost-locale-dev \
12+
libboost-log-dev \
13+
libboost-program-options-dev \
14+
libcap-dev \
15+
libcurl4-openssl-dev \
16+
libdrm-dev \
17+
libevdev-dev \
18+
libmfx-dev \
19+
libnotify-dev \
20+
libnuma-dev \
21+
libopus-dev \
22+
libpulse-dev \
23+
libssl-dev \
24+
libva-dev \
25+
libvdpau-dev \
26+
libwayland-dev \
27+
libx11-dev \
28+
libxcb-shm0-dev \
29+
libxcb-xfixes0-dev \
30+
libxcb1-dev \
31+
libxfixes-dev \
32+
libxrandr-dev \
33+
libxtst-dev \
34+
wget
35+
36+
# clean apt cache
37+
sudo apt-get clean
38+
sudo rm -rf /var/lib/apt/lists/*
39+
40+
# Update gcc alias
41+
# https://stackoverflow.com/a/70653945/11214013
42+
sudo update-alternatives --install \
43+
/usr/bin/gcc gcc /usr/bin/gcc-10 100 \
44+
--slave /usr/bin/g++ g++ /usr/bin/g++-10 \
45+
--slave /usr/bin/gcov gcov /usr/bin/gcov-10 \
46+
--slave /usr/bin/gcc-ar gcc-ar /usr/bin/gcc-ar-10 \
47+
--slave /usr/bin/gcc-ranlib gcc-ranlib /usr/bin/gcc-ranlib-10
48+
49+
# Install CUDA
50+
sudo wget \
51+
https://developer.download.nvidia.com/compute/cuda/11.8.0/local_installers/cuda_11.8.0_520.61.05_linux.run \
52+
--progress=bar:force:noscroll -q --show-progress -O /root/cuda.run
53+
sudo chmod a+x /root/cuda.run
54+
sudo /root/cuda.run --silent --toolkit --toolkitpath=/usr --no-opengl-libs --no-man-page --no-drm
55+
sudo rm /root/cuda.run

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
# ignore repo directories and files
88
docs/
9+
gh-pages-template/
910
scripts/
1011
tools/
1112
crowdin.yml

.github/dependabot.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,45 +10,39 @@ updates:
1010
schedule:
1111
interval: "daily"
1212
time: "08:00"
13-
target-branch: "nightly"
1413
open-pull-requests-limit: 10
1514

1615
- package-ecosystem: "github-actions"
1716
directory: "/"
1817
schedule:
1918
interval: "daily"
2019
time: "08:30"
21-
target-branch: "nightly"
2220
open-pull-requests-limit: 10
2321

2422
- package-ecosystem: "npm"
2523
directory: "/"
2624
schedule:
2725
interval: "daily"
2826
time: "09:00"
29-
target-branch: "nightly"
3027
open-pull-requests-limit: 10
3128

3229
- package-ecosystem: "nuget"
3330
directory: "/"
3431
schedule:
3532
interval: "daily"
3633
time: "09:30"
37-
target-branch: "nightly"
3834
open-pull-requests-limit: 10
3935

4036
- package-ecosystem: "pip"
4137
directory: "/"
4238
schedule:
4339
interval: "daily"
4440
time: "10:00"
45-
target-branch: "nightly"
4641
open-pull-requests-limit: 10
4742

4843
- package-ecosystem: "gitsubmodule"
4944
directory: "/"
5045
schedule:
5146
interval: "daily"
5247
time: "10:30"
53-
target-branch: "nightly"
5448
open-pull-requests-limit: 10

0 commit comments

Comments
 (0)