summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2023-01-03 14:17:56 (GMT)
committerGitHub <noreply@github.com>2023-01-03 14:17:56 (GMT)
commitd326f6fae80c090419d0178bb3e799fd50e78df5 (patch)
treef092642e6d18a5648fdaa4a0431358b592bfb06c
parentc0b36461931bfbf13ac3ba813127132a3da83f7a (diff)
downloadhdf5-d326f6fae80c090419d0178bb3e799fd50e78df5.zip
hdf5-d326f6fae80c090419d0178bb3e799fd50e78df5.tar.gz
hdf5-d326f6fae80c090419d0178bb3e799fd50e78df5.tar.bz2
Adds 'make install' and 'make check-install' to the CI (Autotools only) (#2381)
-rw-r--r--.github/workflows/main.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index e214618..a313179 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -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')