security: zeroize plaintext key material in memory (H2, M3) #23
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: Format | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - documentation/** | |
| env: | |
| pg_version: 18 | |
| jobs: | |
| check: | |
| name: Check | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v6 | |
| with: | |
| path: src | |
| submodules: recursive | |
| - name: Clone postgres repository | |
| uses: actions/checkout@v6 | |
| with: | |
| path: postgres | |
| repository: percona/postgres.git | |
| ref: PSP_REL_${{ env.pg_version }}_STABLE | |
| - name: Install dependencies | |
| run: src/ci_scripts/ubuntu-deps.sh | |
| - name: Build postgres | |
| run: src/ci_scripts/build-and-install-psp.sh debug | |
| - name: Build open_pg_tde | |
| run: src/ci_scripts/build.sh debug | |
| - name: Update typedefs | |
| run: src/ci_scripts/dump-typedefs.sh | |
| - name: Run pgindent | |
| run: src/ci_scripts/run-pgindent.sh --check --diff | |
| - name: Run pgperltidy | |
| run: src/ci_scripts/run-pgperltidy.sh --assert-tidy --standard-error-output |