summaryrefslogtreecommitdiffstats
path: root/.ci/yuzu-mainline-step2.yml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* ci: Enable building with Visual Studio 2022 (again)Morph2022-08-301-1/+1
| | | | Since the following https://developercommunity.visualstudio.com/t/Type-alias-lookup-failure-within-paramet/10039150 compiler bug has been fixed, we can finally build with VS 2022 again.
* Merge pull request #8349 from yuzu-emu/revert-8256-ci-vs-2022bunnei2022-07-281-1/+1
|\ | | | | Revert "ci: Enable building with Visual Studio 2022"
| * Revert "ci: Enable building with Visual Studio 2022"bunnei2022-07-231-1/+1
| |
* | chore: make yuzu REUSE compliantAndrea Pappacoda2022-07-271-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
* ci: Update vmImage to windows-2022Morph2022-04-251-1/+1
| | | | The windows-2022 image contains Visual Studio 2022.
* ci: Use ubuntu-latest vmImage where applicableameerj2021-10-111-0/+2
| | | | Not specifying the vmImage defaults to ubuntu-16.04, which will be deprecated soon and is experiencing brownouts.
* ci: Increase mainline build timeout.bunnei2021-07-211-1/+3
| | | - We're currently timing out with builds exceeding 60M. This doubles the timeout to 120M.
* ci: Update to Windows Server 2019 and Visual Studio 2019Zach Hilman2020-04-041-1/+1
| | | This updates to the latest available toolchain for MSVC builds.
* ci: Isolate upload merge step into stage 2Zach Hilman2019-10-091-2/+2
|
* ci: Add version counter variableZach Hilman2019-10-051-0/+5
|
* ci: Correct mainline release dependencyZach Hilman2019-10-031-1/+3
|
* ci: Use MSVC windows for patreonZach Hilman2019-10-031-1/+1
|
* ci: Use MSVC windows for mainlineZach Hilman2019-10-021-3/+36
|
* ci: Split mainline pipeline and add support for GitHub releases (#2900)Zach Hilman2019-09-221-0/+28
* ci: Add mock build alternative for fast testing * ci: Always cache build * ci: Extract steps to download build stage artifacts * ci: Add template to release to GitHub * ci: Add template to release to Azure Universal Artifacts * ci: Split mainline to two pipelines