summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/linux/docker.sh (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-10-10ci/linux: Fix find parameter ordertoast29031-1/+1
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
2023-10-10ci/linux: Upload separated debug symbolslat9nq1-1/+14
Creates a new archive with a debug suffix that contains the debug symbols from compiling yuzu for mainline. The yuzu executable also gets a GNU debug link to the symbols file. ci/linux: Compile with debug symbols and upload separately Currently only uploads for yuzu but yuzu-cmd or other future executables can be added to the for-loop's parameters.
2023-10-08qt: implement automatic crash dump supportLiam1-0/+1
2023-07-07ci/linux: Target deploy script from appimage pathlat9nq1-1/+1
Includes AppImage changes so that the needed Qt Wayland libraries are included.
2023-03-30Re-enable LTO for LinuxMatías Locatti1-0/+1
Using the tested method of only enabling it for core and video_core. Clang is skipped, because Clang.
2022-12-18Enable compiler optimizations and enforce x86-64-v2 on GCC/Clang (#9442)Matías Locatti1-0/+1
* Testing LTO (#4) * Testing LTO * clang * linux * Added the rest of Blinkhawk's optimizations * Unlikely asserts * Removing LTO from Linux builds - GCC * Removing LTO from Linux builds - Clang
2022-10-01Migrate deploy-linux.sh from lat9nq's repo.bunnei1-1/+1
2022-09-26ci/linux: Drop linuxdeploy usagelat9nq1-5/+3
Recent versions of Docker appear to cause the Qt linuxdeploy plugin to throw a boost file copy error. This switches from linuxdeploy to a script of mine I've been working on for a while.
2022-09-21ci/linux: Use AppRun.sh to start AppImagelat9nq1-3/+3
The current AppRun is more difficult to update. This script still uses the old version of AppImageKit-checkrt, but now we use the shell script version so we can set our own environment variables as the application starts up. This specific version searches for and sets the correct root CA file to prevent SSL errors in yuzu.
2022-07-27chore: make yuzu REUSE compliantAndrea Pappacoda1-0/+3
[REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
2022-07-26ci/linux: Delete libwayland-client from AppDirlat9nq1-0/+3
This library causes issues in Vulkan driver detection. libQt5MultimediaGstTools's dependencies seem to be the issue.
2022-07-23ci,CMake: Integrate vcpkg into CMakeListslat9nq1-1/+0
Uses manifest mode if the bundled vcpkg is used.
2022-07-23ci,CMake: Drop Conan support for vcpkglat9nq1-0/+1
Between packages breaking, Conan always being a moving target for minimum required CMake support, and now their moves to Conan 2.0 causing existing packages to break, I suppose this was a long time coming. vcpkg isn't without its drawbacks, but at the moment it seems easier on the project to use for external packages. Mostly removes the logic for Conan from the root CMakeLists file, leaving basic find_package()'s in its place. Sets only the find_package()'s that require CONFIG mode as necessary. clang and linux CI now use the vcpkg toolchain file configured in the Docker container when possible. mingw CI turns off YUZU_TESTS because there's no way on the container to run Windows executables on a Linux host anyway, and it's not easy to get Catch2 there.
2022-07-05CI: use Ninja to build stuff fasterliushuyu1-3/+4
2022-07-05CI: Use GitHub Actions to check pull requestsliushuyu1-2/+0
2021-07-06cmake, ci: Build bundled FFmpeg with yuzulat9nq1-1/+2
Drops usage of CMAKE_DEPENDENT_OPTION to allow using YUZU_USE_BUNDLED_FFMPEG as an option on any platform. CI then now builds FFmpeg always, netting about 10 MB less used on the AppImage. Also somewhat fixes YUZU_USE_BUNDLED_QT so that it can be used even if CMake doesn't clean up its state after running the first find_package.
2021-05-16ci: linux: Freeze AppImage binarieslat9nq1-4/+4
A regression was introduced on May 13 by linuxdeploy that causes file open dialogs to crash yuzu in the AppImage (likely this commit 1e28ee38fa174279defe70cdaadf2a552c80258c from linuxdeploy/linuxdeploy-desktopfile). Instead of downloading the latest version from each of the repos we use to build the AppImage, just download the ones hosted at yuzu-emu/ext-linux-bin, which are the same binaries we have been using, but verified to be working and won't update on us beyond our control. This can eventually be moved into the container itself to remove the need to download them at build time.
2021-04-18ci: linux: Link Boost staticallylat9nq1-1/+11
Only affects the AppImage and the raw binaries. Enables running the executable alone on Linux systems when all other libraries are compatible.
2021-01-06ci/linux: Make Mainline AppImages updateablelat9nq1-5/+0
Moves the final step for building the AppImage to the upload script. Instructs appimagetool to embed update information into the AppImage if the release target is Mainline. Also tells it to create a zsync file to enable partial-downloads when updating the AppImage. Also renames the AppImage from `yuzu-{version info}-x86_64.AppImage` to `yuzu-{version info}.AppImage` to avoid a bug in the downloads page at yuzu-emu.org/downloads.
2020-12-30ci: Build an AppImagelat9nq1-2/+42
This builds yuzu in an AppImage alongside the other archives during release. Required to allow distributing yuzu in the future with upgraded dependencies, such as Qt.
2020-12-08ci: Remove `-DYUZU_USE_BUNDLED_UNICORN=ON`lat9nq1-1/+1
Unicorn has been removed, yet CI still enables building with Unicorn. This just cleans up a few leftovers by removing the variable from the CMake parameters in CI.
2020-11-30Disable web applet and warning when compiling for Linux on CIlat9nq1-1/+1
yuzu's web applet does not or barely reacts to user input while open in Linux. It can be closed via 'Exit Web Applet' on the menubar, however if yuzu is in fullscreen, this is effectively a softlock as the menubar cannot be accessed. This disables building yuzu with the web applet on the Linux CI target. In addition, this disables the QMessageBox warning about not having compiled yuzu with the web applet.
2020-07-18yuzu: Port translation support from CitraFearlessTobi1-1/+1
Co-Authored-By: Weiyi Wang <wwylele@gmail.com>
2020-05-03Re-enables building yuzu with Vulkan enabled via the CI scriptslat9nq1-1/+1
This is possible now with the updated Docker images and their updated packages. Before, there were build errors due to old QT5 packages on Ubuntu, but now since they have updated packages it is feasible to build with Vulkan enabled once more.
2020-01-29ci: Disable Vulkan for Linux buildsReinUsesLisp1-1/+1
2019-10-29externals: Amend zlib submoduleLioncash1-2/+1
Supplies CMakeLists.txt file that avoids pulling in zlib's tests into the tree. This avoids needing to explicitly opt these tests out from ctest.
2019-10-05ci: Add version counter variableZach Hilman1-1/+1
2019-10-04externals: Use upstream zlibLioncash1-1/+2
We don't need to depend on a custom fork for this. We can add the library as is, and then make it excluded from the ALL target, so we only link in the libraries that we actually make use of.
2019-07-14Finalize Azure Pipelines DefinitionsZach Hilman1-1/+4
d
2019-04-16travis: Use Ninja for Travis buildsCameron Cawley1-1/+1
2019-04-15travis: use prebuilt image (#3839)liushuyu1-3/+0
* travis: use prebuilt image * travis: use prebuilt image (MinGW)
2018-12-29travis: Use correct package for linux Qt5WebEngineZach Hilman1-1/+1
2018-12-28cmake: Add USE_QT_WEB_ENGINE flag and update build systemZach Hilman1-2/+2
2018-10-02Port web_service from CitrafearlessTobi1-1/+1
2018-09-19travis: running mingw build on travis citech4me1-1/+3
This commit also fixed a broken cmake dependency with unicorn
2018-08-31travis: use Citras ccachefearlessTobi1-7/+1
2018-08-29Show game compatibility within yuzufearlessTobi1-1/+1
2018-06-07Add ccache support for Linux on TravisMichał Janiszewski1-1/+7
2018-06-07Install cmake from repositories for UbuntuMichał Janiszewski1-5/+1
Ubuntu 18.04 already has cmake 3.10.2
2018-05-28Use Ninja for Travis buildsMichał Janiszewski1-3/+3
2018-01-16Build: Add unicorn as a submodule and build it if neededJames Rowe1-8/+2
Adds a cmake custom target that will build unicorn on first compile and uses this in the build scripts as well. Updates Appveyor and Travis build scripts to work with the new unicorn build, and updates the paths to all of the different artifacts.
2018-01-13Update build scriptsMerryMage1-6/+11
2017-10-07travis: Split build scripts for different platformsMerryMage1-4/+1
This commit also separates clang-format from the linux build, closing #2702.
2017-09-19WebService: Set USE_SYSTEM_CURL for travis linux buildsB3n301-1/+1
2017-08-10Travis: Use Docker to build for LinuxJames1-0/+20