[PW_SID:1099714] [RESEND] riscv: mm: exclude invalid THP PMDs from page table check #2116
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
| # SPDX-FileCopyrightText: 2023 Rivos Inc. | |
| # | |
| # SPDX-License-Identifier: Apache-2.0 | |
| name: linux-riscv-ci-series | |
| defaults: | |
| run: | |
| shell: bash -leo pipefail {0} | |
| on: pull_request | |
| concurrency: | |
| group: ci-test-${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-series: | |
| if: ${{ endsWith(github.head_ref, '_test') || endsWith(github.head_ref, '_manual') }} | |
| runs-on: self-hosted | |
| timeout-minutes: 50400 # 35 days | |
| container: | |
| image: ghcr.io/linux-riscv/pw-builder:latest | |
| volumes: | |
| - /home/github/ramdisk/build:/build | |
| - /home/github/ccache:/build/ccache | |
| - /home/github/gitref:/build/gitref | |
| steps: | |
| - name: Configure git | |
| run: | | |
| git config --global --add safe.directory '*' | |
| - name: Checkout git | |
| run: | | |
| mkdir -p /build/my-linux | |
| cd /build/my-linux | |
| git clone --filter=tree:0 --reference /build/gitref https://github.com/${{ github.repository }} . | |
| git fetch origin ${{ github.event.pull_request.head.sha }} | |
| git reset --hard ${{ github.event.pull_request.head.sha }} | |
| git log -1 | |
| - name: Run checks | |
| env: | |
| SQUAD_TOKEN: ${{ secrets.SQUAD_TOKEN }} | |
| GITHUB_JOB_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
| GITHUB_BRANCH_NAME: ${{ github.head_ref || github.ref_name }} | |
| continue-on-error: true | |
| run: | | |
| cd /build/my-linux && bash .github/scripts/series.sh | |
| - name: Collect logs | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-logs | |
| path: /build/logs/* |