diff options
| author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-02-09 21:17:53 -0500 |
|---|---|---|
| committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-02-22 01:40:44 -0500 |
| commit | fb0b4c7e278bbeb275458f2c2dfd5c2ca1576e20 (patch) | |
| tree | 05252af34f6a5cd347fdea28416e52bdeea6d7f3 /.ci/templates | |
| parent | 20245e660f54d1b2277d6eba9ea9df87664f9a96 (diff) | |
ci: Add clang build scripts
Adds scripts that instruct CI to build yuzu with the installed Clang
compiler on yuzuemu/build-environments:linux-fresh.
These scripts are based on the .ci/scripts/linux scripts, minus AppImage
building since that isn't necessary. Re-uses linux-fresh since that
container has Clang 12 installed.
Diffstat (limited to '.ci/templates')
| -rw-r--r-- | .ci/templates/build-standard.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.ci/templates/build-standard.yml b/.ci/templates/build-standard.yml index 7422c8346..57d36f813 100644 --- a/.ci/templates/build-standard.yml +++ b/.ci/templates/build-standard.yml @@ -12,6 +12,9 @@ jobs: windows: BuildSuffix: 'windows-mingw' ScriptFolder: 'windows' + clang: + BuildSuffix: 'clang' + ScriptFolder: 'clang' linux: BuildSuffix: 'linux' ScriptFolder: 'linux' @@ -24,4 +27,4 @@ jobs: parameters: artifactSource: 'false' cache: $(parameters.cache) - version: $(parameters.version)
\ No newline at end of file + version: $(parameters.version) |
