2022-05-14 05:56:57 +00:00
|
|
|
name: 🐧 Linux Builds
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- '*'
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build_gcc_lto:
|
|
|
|
name: "GCC"
|
2022-07-02 04:00:56 +00:00
|
|
|
uses: ./.github/workflows/linux_build_wx.yml
|
2022-05-14 05:56:57 +00:00
|
|
|
with:
|
|
|
|
jobName: "with LTO"
|
|
|
|
compiler: gcc
|
2022-08-15 00:18:03 +00:00
|
|
|
cmakeflags: "-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON"
|
2022-05-14 05:56:57 +00:00
|
|
|
buildAppImage: true
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
# (PCH conflicts with ccache, fixed by https://gitlab.kitware.com/cmake/cmake/-/merge_requests/4400)
|
|
|
|
build_gcc_nopch:
|
|
|
|
name: "GCC"
|
2022-07-02 04:00:56 +00:00
|
|
|
uses: ./.github/workflows/linux_build_wx.yml
|
2022-05-14 05:56:57 +00:00
|
|
|
with:
|
|
|
|
jobName: "No PCH"
|
|
|
|
compiler: gcc
|
|
|
|
cmakeflags: "-DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON"
|
|
|
|
detail: " nopch"
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
build_gcc_nopch_avx2:
|
|
|
|
name: "GCC"
|
2022-07-02 04:00:56 +00:00
|
|
|
uses: ./.github/workflows/linux_build_wx.yml
|
2022-05-14 05:56:57 +00:00
|
|
|
with:
|
|
|
|
jobName: "AVX2 and No PCH"
|
|
|
|
compiler: gcc
|
|
|
|
cmakeflags: "-DCMAKE_DISABLE_PRECOMPILE_HEADERS=ON -DARCH_FLAG=-march=haswell"
|
|
|
|
detail: " avx2 nopch"
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
build_clang_nopch:
|
|
|
|
name: "Clang"
|
2022-07-02 04:00:56 +00:00
|
|
|
uses: ./.github/workflows/linux_build_wx.yml
|
2022-05-14 05:56:57 +00:00
|
|
|
with:
|
|
|
|
jobName: "No PCH"
|
|
|
|
compiler: clang
|
|
|
|
cmakeflags: ""
|
|
|
|
detail: " nopch"
|
|
|
|
secrets: inherit
|
2022-07-02 04:00:56 +00:00
|
|
|
|
|
|
|
build_linux_qt_sse4:
|
|
|
|
name: "AppImage"
|
|
|
|
uses: ./.github/workflows/linux_build_qt.yml
|
|
|
|
with:
|
|
|
|
jobName: "Qt SSE4"
|
|
|
|
compiler: clang
|
|
|
|
cmakeflags: ""
|
|
|
|
simd: "SSE4"
|
|
|
|
buildAppImage: true
|
|
|
|
secrets: inherit
|
|
|
|
|
|
|
|
build_linux_qt_avx2:
|
|
|
|
name: "AppImage"
|
|
|
|
uses: ./.github/workflows/linux_build_qt.yml
|
|
|
|
with:
|
|
|
|
jobName: "Qt AVX2"
|
|
|
|
detail: ""
|
|
|
|
compiler: clang
|
|
|
|
cmakeflags: "-DARCH_FLAG=-march=haswell"
|
|
|
|
simd: "AVX2"
|
|
|
|
buildAppImage: true
|
|
|
|
secrets: inherit
|