summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/main.yml46
1 files changed, 46 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index de33669..f827ed9 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -345,6 +345,52 @@ jobs:
cmake: "Release"
autotools: "production"
+ # Parallel Debug -Werror
+ - name: "Ubuntu gcc Autotools parallel -Werror (build only)"
+ os: ubuntu-latest
+ cpp: disable
+ fortran: disable
+ java: disable
+ parallel: enable
+ mirror_vfd: disable
+ direct_vfd: enable
+ deprec_sym: enable
+ default_api: v114
+ toolchain: ""
+ generator: "autogen"
+ flags: "CFLAGS=-Werror"
+ run_tests: false
+ thread_safety:
+ enabled: false
+ text: ""
+ build_mode:
+ text: " DBG"
+ cmake: "Debug"
+ autotools: "debug"
+
+ # Parallel production/release -Werror
+ - name: "Ubuntu gcc Autotools parallel -Werror (build only)"
+ os: ubuntu-latest
+ cpp: disable
+ fortran: disable
+ java: disable
+ parallel: enable
+ mirror_vfd: disable
+ direct_vfd: enable
+ deprec_sym: enable
+ default_api: v114
+ toolchain: ""
+ generator: "autogen"
+ flags: "CFLAGS=-Werror"
+ run_tests: false
+ thread_safety:
+ enabled: false
+ text: ""
+ build_mode:
+ text: " REL"
+ cmake: "Release"
+ autotools: "production"
+
# Sets the job's name from the properties
name: "${{ matrix.name }}${{ matrix.build_mode.text }}${{ matrix.thread_safety.text }}"