mirror of
				https://github.com/Z3Prover/z3
				synced 2025-11-03 21:09:11 +00:00 
			
		
		
		
	Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			504 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
name: MSVC Static Build
 | 
						|
  
 | 
						|
on:
 | 
						|
  push:
 | 
						|
  pull_request:
 | 
						|
 | 
						|
permissions:
 | 
						|
  contents: read # to fetch code (actions/checkout)
 | 
						|
 | 
						|
jobs:
 | 
						|
  build:
 | 
						|
    runs-on: windows-2019
 | 
						|
    env:
 | 
						|
      BUILD_TYPE: Release
 | 
						|
    steps:
 | 
						|
    - name: Checkout Repo
 | 
						|
      uses: actions/checkout@v4
 | 
						|
  
 | 
						|
    - name: Build
 | 
						|
      run: |
 | 
						|
        cmake -B build -DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} -DZ3_BUILD_LIBZ3_SHARED=OFF -DZ3_BUILD_LIBZ3_MSVC_STATIC=ON
 | 
						|
        cmake --build build --config ${{ env.BUILD_TYPE }} --parallel
 | 
						|
        
 |