Add parallel Autotools -Werror checks (#2384)

New actions added to GitHub CI to build parallel HDF5 w/ CFLAGS=-Werror. Since the GitHub runners are so underpowered, we just configure, build, and install but do not run tests. This covers Autotools only, both debug and release.
This commit is contained in:
Dana Robinson 2023-02-13 11:57:43 -08:00 committed by GitHub
parent 5ce275145c
commit 6e3b34188e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 }}"