Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
43a1948d
There was an error fetching the commit references. Please try again later.
Commit
43a1948d
authored
3 years ago
by
liushuyu
Browse files
Options
Downloads
Patches
Plain Diff
CI: use Ninja to build stuff faster
parent
a1815b61
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.ci/scripts/clang/docker.sh
+2
-2
2 additions, 2 deletions
.ci/scripts/clang/docker.sh
.ci/scripts/linux/docker.sh
+4
-3
4 additions, 3 deletions
.ci/scripts/linux/docker.sh
.ci/scripts/windows/docker.sh
+3
-3
3 additions, 3 deletions
.ci/scripts/windows/docker.sh
with
9 additions
and
8 deletions
.ci/scripts/clang/docker.sh
+
2
−
2
View file @
43a1948d
...
...
@@ -6,9 +6,9 @@ set -e
ccache
-s
mkdir
build
||
true
&&
cd
build
cmake ..
-DDISPLAY_VERSION
=
$1
-DCMAKE_BUILD_TYPE
=
Release
-DCMAKE_C_COMPILER
=
/usr/lib/ccache/clang
-DCMAKE_CXX_COMPILER
=
/usr/lib/ccache/clang++
-DYUZU_ENABLE_COMPATIBILITY_REPORTING
=
${
ENABLE_COMPATIBILITY_REPORTING
:-
"OFF"
}
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD
=
ON
-DUSE_DISCORD_PRESENCE
=
ON
-DENABLE_QT_TRANSLATION
=
ON
-DCMAKE_INSTALL_PREFIX
=
"/usr"
cmake ..
-GNinja
-DDISPLAY_VERSION
=
$1
-DCMAKE_BUILD_TYPE
=
Release
-DCMAKE_C_COMPILER
=
/usr/lib/ccache/clang
-DCMAKE_CXX_COMPILER
=
/usr/lib/ccache/clang++
-DYUZU_ENABLE_COMPATIBILITY_REPORTING
=
${
ENABLE_COMPATIBILITY_REPORTING
:-
"OFF"
}
-DENABLE_COMPATIBILITY_LIST_DOWNLOAD
=
ON
-DUSE_DISCORD_PRESENCE
=
ON
-DENABLE_QT_TRANSLATION
=
ON
-DCMAKE_INSTALL_PREFIX
=
"/usr"
make
-j
$(
nproc
)
ninja
ccache
-s
...
...
This diff is collapsed.
Click to expand it.
.ci/scripts/linux/docker.sh
+
4
−
3
View file @
43a1948d
...
...
@@ -17,15 +17,16 @@ cmake .. \
-DENABLE_QT_TRANSLATION
=
ON
\
-DUSE_DISCORD_PRESENCE
=
ON
\
-DYUZU_ENABLE_COMPATIBILITY_REPORTING
=
${
ENABLE_COMPATIBILITY_REPORTING
:-
"OFF"
}
\
-DYUZU_USE_BUNDLED_FFMPEG
=
ON
-DYUZU_USE_BUNDLED_FFMPEG
=
ON
\
-GNinja
make
-j
$(
nproc
)
ninja
ccache
-s
ctest
-VV
-C
Release
make
install
DESTDIR
=
AppDir
DESTDIR
=
"
$PWD
/AppDir"
ninja
install
rm
-vf
AppDir/usr/bin/yuzu-cmd AppDir/usr/bin/yuzu-tester
# Download tools needed to build an AppImage
...
...
This diff is collapsed.
Click to expand it.
.ci/scripts/windows/docker.sh
+
3
−
3
View file @
43a1948d
...
...
@@ -6,9 +6,9 @@ set -e
ccache
-s
mkdir
-p
"
$HOME
/.conan/"
cp
-rv
/h
om
e
/yuzu
/.conan/profiles/
"
$HOME
/.conan/
"
cp
-rv
/h
om
e
/yuzu
/.conan
/settings.yml
"
$HOME
/.conan/"
mkdir
-p
"
$HOME
/.conan/
profiles
"
wget
-nc
"https://github.c
om/yuzu
-emu/build-environments/raw/master/linux-mingw/default"
-O
"
$HOME
/.conan/profiles/default
"
wget
-nc
"https://github.c
om/yuzu
-emu/build-environments/raw/master/linux-mingw
/settings.yml
"
-O
"
$HOME
/.conan/
settings.yml
"
mkdir
-p
build
&&
cd
build
export
LDFLAGS
=
"-fuse-ld=lld"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment