forked from LizardByte/Sunshine
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:LizardByte/Sunshine
- Loading branch information
Showing
439 changed files
with
31,010 additions
and
14,343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# install dependencies for C++ analysis | ||
set -e | ||
|
||
# update pacman | ||
pacman --noconfirm -Suy | ||
|
||
# install wget | ||
pacman --noconfirm -S \ | ||
wget | ||
|
||
# download working curl | ||
wget https://repo.msys2.org/mingw/ucrt64/mingw-w64-ucrt-x86_64-curl-8.8.0-1-any.pkg.tar.zst | ||
|
||
# install dependencies | ||
pacman -U --noconfirm mingw-w64-ucrt-x86_64-curl-8.8.0-1-any.pkg.tar.zst | ||
pacman -Syu --noconfirm --ignore=mingw-w64-ucrt-x86_64-curl \ | ||
base-devel \ | ||
diffutils \ | ||
gcc \ | ||
git \ | ||
make \ | ||
mingw-w64-ucrt-x86_64-boost \ | ||
mingw-w64-ucrt-x86_64-cmake \ | ||
mingw-w64-ucrt-x86_64-cppwinrt \ | ||
mingw-w64-ucrt-x86_64-graphviz \ | ||
mingw-w64-ucrt-x86_64-miniupnpc \ | ||
mingw-w64-ucrt-x86_64-nlohmann-json \ | ||
mingw-w64-ucrt-x86_64-nodejs \ | ||
mingw-w64-ucrt-x86_64-nsis \ | ||
mingw-w64-ucrt-x86_64-onevpl \ | ||
mingw-w64-ucrt-x86_64-openssl \ | ||
mingw-w64-ucrt-x86_64-opus \ | ||
mingw-w64-ucrt-x86_64-rust \ | ||
mingw-w64-ucrt-x86_64-toolchain | ||
|
||
# build | ||
mkdir -p build | ||
cd build || exit 1 | ||
cmake \ | ||
-DBUILD_DOCS=OFF \ | ||
-G "MinGW Makefiles" .. | ||
mingw32-make -j"$(nproc)" | ||
|
||
# skip autobuild | ||
echo "skip_autobuild=true" >> "$GITHUB_OUTPUT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# install dependencies for C++ analysis | ||
set -e | ||
|
||
# install dependencies | ||
brew install \ | ||
boost \ | ||
cmake \ | ||
miniupnpc \ | ||
node \ | ||
opus \ | ||
pkg-config | ||
|
||
# build | ||
mkdir -p build | ||
cd build || exit 1 | ||
cmake \ | ||
-DBOOST_USE_STATIC=OFF \ | ||
-DBUILD_DOCS=OFF \ | ||
-G "Unix Makefiles" .. | ||
make -j"$(sysctl -n hw.logicalcpu)" | ||
|
||
# skip autobuild | ||
echo "skip_autobuild=true" >> "$GITHUB_OUTPUT" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# ensure dockerfiles are checked out with LF line endings | ||
Dockerfile text eol=lf | ||
*.dockerfile text eol=lf | ||
|
||
# ensure flatpak lint json files are checked out with LF line endings | ||
*flatpak-lint-*.json text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.