This repository was archived by the owner on May 16, 2026. It is now read-only.
LLVM 21.1.8 version #134
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: GitHub CI | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| windowsBuild: | |
| name: Windows Build | |
| runs-on: windows-latest | |
| env: | |
| LLVM_VERSION: 21.1.8 | |
| LLVM_MAJOR_VERSION: 21 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| CRT: | |
| - msvcrt | |
| - libcmt | |
| TARGET_CPU: | |
| - amd64 | |
| CONFIGURATION: | |
| - Debug | |
| - Release | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v2 | |
| - name: Install | |
| shell: cmd | |
| run: | | |
| call %GITHUB_WORKSPACE%\set-env.bat msvc17 ${{matrix.CRT}} ${{matrix.TARGET_CPU}} ${{matrix.CONFIGURATION}} | |
| call %GITHUB_WORKSPACE%\install.bat | |
| - name: Build and test | |
| id: BUILD | |
| shell: cmd | |
| run: | | |
| call %GITHUB_WORKSPACE%\set-env.bat msvc17 ${{matrix.CRT}} ${{matrix.TARGET_CPU}} ${{matrix.CONFIGURATION}} | |
| call %GITHUB_WORKSPACE%\build.bat | |
| echo ::set-output name=DEPLOY_FILE::%DEPLOY_FILE% | |
| - name: Release | |
| uses: softprops/action-gh-release@v1 | |
| if: startsWith(github.ref, 'refs/tags/') | |
| with: | |
| files: ${{steps.BUILD.outputs.DEPLOY_FILE}} |