Adds 'make install' and 'make check-install' to the CI (Autotools only) (#2381)

This commit is contained in:
Dana Robinson 2023-01-03 06:17:56 -08:00 committed by GitHub
parent c0b3646193
commit d326f6fae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -468,3 +468,17 @@ jobs:
working-directory: ${{ runner.workspace }}/build
# Skip Debug MSVC while we investigate H5L Java test timeouts
if: (matrix.generator != 'autogen') && (matrix.run_tests) && ! ((matrix.name == 'Windows MSVC CMake') && (matrix.build_mode.cmake == 'Debug'))
#
# INSTALL (note that this runs even when we don't run the tests)
#
- name: Autotools Install
run: make install
working-directory: ${{ runner.workspace }}/build
if: (matrix.generator == 'autogen')
- name: Autotools Verify Install
run: make check-install
working-directory: ${{ runner.workspace }}/build
if: (matrix.generator == 'autogen')