Switch the AppImage building over to gcc from clang
Turns out the current version of clang doesn't support the [[likely]] and [[unlikely]] attributes, so to ensure good performance, we'll be switching to gcc, at least for now.
This commit is contained in:
+1
-1
@@ -6,6 +6,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
- NAME="Linux build"
|
- NAME="Linux build"
|
||||||
- COMPILER="gcc"
|
- COMPILER="gcc"
|
||||||
|
- DEPLOY_APPIMAGE="true"
|
||||||
services: docker
|
services: docker
|
||||||
cache: ccache
|
cache: ccache
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
@@ -16,7 +17,6 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
- NAME="Linux build"
|
- NAME="Linux build"
|
||||||
- COMPILER="clang"
|
- COMPILER="clang"
|
||||||
- DEPLOY_APPIMAGE="true"
|
|
||||||
services: docker
|
services: docker
|
||||||
cache: ccache
|
cache: ccache
|
||||||
compiler: clang
|
compiler: clang
|
||||||
|
|||||||
Reference in New Issue
Block a user