Fix 574: CVE 2025 52582 Prevent grabbing overaly from pixel data if information data is not persistent #411
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: C/C++ CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| example_matrix: | |
| strategy: | |
| matrix: | |
| os: [windows-latest, ubuntu-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: checkout source | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| fetch-depth: 2 | |
| - name: configure | |
| run: cmake -DGDCM_BUILD_SHARED_LIBS=ON -DGDCM_BUILD_DOCBOOK_MANPAGES:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=None -B build | |
| - name: make | |
| run: cmake --build build | |
| - name: make check | |
| run: ctest --test-dir build --parallel 2 --output-on-failure || true |