[Github][CI] Add Windows Premerge Job for Testing #2745
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: Build and Test | |
| continue-on-error: true | |
| run: | | |
| echo test | |