summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/linux/docker.sh (unfollow)
Commit message (Collapse)AuthorFilesLines
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