diff options
| author | 2021-02-09 21:17:53 -0500 | |
|---|---|---|
| committer | 2021-02-22 01:40:44 -0500 | |
| commit | fb0b4c7e278bbeb275458f2c2dfd5c2ca1576e20 (patch) | |
| tree | 05252af34f6a5cd347fdea28416e52bdeea6d7f3 /.ci/templates | |
| parent | Merge pull request #5936 from Kelebek1/Offsets (diff) | |
| download | yuzu-fb0b4c7e278bbeb275458f2c2dfd5c2ca1576e20.tar.gz yuzu-fb0b4c7e278bbeb275458f2c2dfd5c2ca1576e20.tar.xz yuzu-fb0b4c7e278bbeb275458f2c2dfd5c2ca1576e20.zip | |
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: | |||
| 12 | windows: | 12 | windows: |
| 13 | BuildSuffix: 'windows-mingw' | 13 | BuildSuffix: 'windows-mingw' |
| 14 | ScriptFolder: 'windows' | 14 | ScriptFolder: 'windows' |
| 15 | clang: | ||
| 16 | BuildSuffix: 'clang' | ||
| 17 | ScriptFolder: 'clang' | ||
| 15 | linux: | 18 | linux: |
| 16 | BuildSuffix: 'linux' | 19 | BuildSuffix: 'linux' |
| 17 | ScriptFolder: 'linux' | 20 | ScriptFolder: 'linux' |
| @@ -24,4 +27,4 @@ jobs: | |||
| 24 | parameters: | 27 | parameters: |
| 25 | artifactSource: 'false' | 28 | artifactSource: 'false' |
| 26 | cache: $(parameters.cache) | 29 | cache: $(parameters.cache) |
| 27 | version: $(parameters.version) \ No newline at end of file | 30 | version: $(parameters.version) |