diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-10-12 05:17:27 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2021-10-12 05:17:27 +0300 |
commit | d78d3a005e94907068db234c5539c437901ab982 (patch) | |
tree | 84bf939f54da54484e520021d982e031beba859a /.github/workflows/ci.yml | |
parent | f452bd82ba50941d8be9b2e9799d911d6c7dbe8b (diff) | |
download | sciteco-d78d3a005e94907068db234c5539c437901ab982.tar.gz |
CI on MacOS should only use Clang
* Lexilla apparently does not build with GCC, although that seems
to be a matter of build flags.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e1c91d..336b15e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,10 @@ jobs: - name: Install Build Dependencies run: brew install autoconf automake libtool glib groff doxygen - name: Configure Build + env: + # Make sure we don't pick up GCC by accident. + CC: clang + CXX: clang++ run: | autoreconf -i ./configure --with-interface=ncurses --enable-html-manual |