[Github][CI] Add Windows Premerge Job for Testing #3475
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: LLVM Premerge Checks | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/premerge.yaml | |
| push: | |
| branches: | |
| - 'main' | |
| jobs: | |
| premerge-checks-windows: | |
| if: github.repository_owner == 'llvm' | |
| runs-on: llvm-premerge-windows-runners | |
| concurrency: | |
| group: ${{ github.workflow }}-windows-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| steps: | |
| - name: Checkout LLVM | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Setup ccache | |
| uses: hendrikmuhs/[email protected] | |
| with: | |
| variant: "sccache" | |
| - name: Compute Projects | |
| id: vars | |
| run: | | |
| modified_files=$(git diff --name-only HEAD~1...HEAD) | |
| modified_dirs=$(echo "$modified_files" | cut -d'/' -f1 | sort | uniq) | |
| echo $modified_files | |
| echo $modified_dirs | |
| . ./.ci/compute-projects.sh | |
| all_projects="bolt clang clang-tools-extra compiler-rt cross-project-tests flang libc libclc lld lldb llvm mlir openmp polly pstl" | |
| modified_projects="$(keep-modified-projects ${all_projects})" | |
| windows_projects_to_test=$(exclude-windows $(compute-projects-to-test 1 ${modified_projects})) | |
| windows_check_targets=$(check-targets ${windows_projects_to_test} | sort | uniq | tr -d '\r' | tr '\n' ' ') | |
| windows_projects=$(add-dependencies ${windows_projects_to_test} | sort | uniq | tr -d '\r' | tr '\n' ';') | |
| if [[ "${windows_projects}" == "" ]]; then | |
| echo "No projects to build" | |
| exit 0 | |
| fi | |
| echo "Building projects: ${windows_projects}" | |
| echo "Running project checks targets: ${windows_check_targets}" | |
| echo "windows-projects=${windows_projects}" >> $GITHUB_OUTPUT | |
| echo "windows-check-targets=${windows_check_targets}" >> $GITHUB_OUTPUT | |
| - name: Build and Test | |
| shell: cmd | |
| run: | | |
| set MAX_PARALLEL_COMPILE_JOBS=64 | |
| set MAX_PARALLEL_LINK_JOBS=64 | |
| call C:\\BuildTools\\Common7\\Tools\\VsDevCmd.bat -arch=amd64 -host_arch=amd64 | |
| bash .ci/monolithic-windows.sh "${{ steps.vars.outputs.windows-projects }}" "${{ steps.vars.outputs.windows-check-targets }}" | |