[arm64-v6.1.155-generic] crypto: algif_aead - Revert to operating out-of-place (CVE-2026-31431) #64
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: PR Build | |
| on: # yamllint disable-line rule:truthy | |
| pull_request: | |
| branches: | |
| - "eve-kernel-*" | |
| paths-ignore: | |
| - ".github/**" | |
| concurrency: | |
| group: pr-build-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: [runner-xl, X64, Linux] | |
| steps: | |
| - name: Set sanitized branch name | |
| id: branch-setter | |
| run: | | |
| BRANCH_NAME="${{ github.event.pull_request.head.ref }}" | |
| SAFE_BRANCH="${BRANCH_NAME//\//-}" | |
| echo "SAFE_BRANCH=$SAFE_BRANCH" >> $GITHUB_ENV | |
| - name: Checkout PR code | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| repository: ${{ github.event.pull_request.head.repo.full_name }} | |
| fetch-depth: 1 | |
| - name: Build kernel | |
| run: | | |
| make -f Makefile.eve \ | |
| BRANCH=$SAFE_BRANCH \ | |
| kernel-gcc | |
| - name: Clean | |
| if: always() | |
| run: | | |
| make -f Makefile.eve \ | |
| BRANCH=$SAFE_BRANCH \ | |
| clean-gcc | |
| if docker ps -q -f name=linuxkit-builder | grep -q .; then | |
| echo "=== BuildKit disk usage before prune ===" | |
| docker exec linuxkit-builder buildctl du | tail -n 2 | |
| echo "=== Reclaiming ===" | |
| docker exec linuxkit-builder buildctl prune --keep-storage "${BUILDKIT_KEEP_STORAGE_MB:-32000}" | tail -n 1 | |
| echo "=== BuildKit disk usage after prune ===" | |
| docker exec linuxkit-builder buildctl du | tail -n 2 | |
| else | |
| echo "linuxkit-builder container not running; skipping BuildKit cleanup." | |
| fi |