diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-11-25 17:31:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-25 17:31:01 -0500 |
commit | b5093a940bcea82574e6a401b3a411d15fef0212 (patch) | |
tree | 0bc6846dd529d1f734e40e53fc4fdb446405351a | |
parent | 90f1a34d2cd688f18b03bf4884c338e11d3833c9 (diff) | |
parent | 18e26cba780f9366741c07df08874681cea4af67 (diff) |
Merge pull request #1392 from emersion/disable-static-analysis
Disable Clang static analysis
-rw-r--r-- | .builds/archlinux.yml | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml index 4b3e197d..2a4b5fc0 100644 --- a/.builds/archlinux.yml +++ b/.builds/archlinux.yml @@ -15,14 +15,12 @@ sources: - https://github.com/swaywm/wlroots tasks: - setup: | - mkdir wlroots/build-{gcc,clang} - cd wlroots/build-gcc - CC=gcc meson .. - cd ../build-clang - CC=clang meson .. + cd wlroots + CC=gcc meson build-gcc + CC=clang meson build-clang - gcc: | cd wlroots/build-gcc ninja - clang: | cd wlroots/build-clang - ninja scan-build + ninja |