diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-10-09 13:15:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 13:15:37 (GMT) |
commit | 1e8889222c9bee744627bd29b01e2dc5cb6ff1cc (patch) | |
tree | b3b42d5e4681f91797754d861ff59505e6b6c8d8 /.github | |
parent | f4c997c379a725b738368fd28b6e9a4b1bf4b88c (diff) | |
download | hdf5-1e8889222c9bee744627bd29b01e2dc5cb6ff1cc.zip hdf5-1e8889222c9bee744627bd29b01e2dc5cb6ff1cc.tar.gz hdf5-1e8889222c9bee744627bd29b01e2dc5cb6ff1cc.tar.bz2 |
Add CVE action for 1.12 (#3645)
Also updates the CVE table
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cve.yml | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/.github/workflows/cve.yml b/.github/workflows/cve.yml new file mode 100644 index 0000000..522818f --- /dev/null +++ b/.github/workflows/cve.yml @@ -0,0 +1,51 @@ +name: cve 1.12 + +on: + workflow_dispatch: + push: + pull_request: + branches: [ hdf5_1_12 ] + paths-ignore: + - '.github/CODEOWNERS' + - '.github/FUNDING.yml' + - 'doc/**' + - 'release_docs/**' + - 'ACKNOWLEDGEMENTS' + - 'COPYING**' + - '**.md' + +# Using concurrency to cancel any in-progress job or run +concurrency: + group: ${{ github.workflow }}-${{ github.sha || github.event.pull_request.number }} + cancel-in-progress: true + +permissions: + contents: read + +jobs: + build: + name: CVE regression + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Install Autotools Dependencies (Linux) + run: | + sudo apt update + sudo apt install automake autoconf libtool libtool-bin + - name: Install HDF5 + run: | + ./autogen.sh + ./configure --prefix=/usr/local --disable-tests + make + sudo make install + - name: Checkout CVE test repository + uses: actions/checkout@v3 + with: + repository: HDFGroup/cve_hdf5 + path: cve_hdf5 + - name: Run regression tests + run: | + cd cve_hdf5 + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib" + ./test_hdf5_cve.sh /usr/local/bin ./cve_out |