This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
Add deprecated notice to readme #64
This file contains 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: Windows Build CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Windows Build CI | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
configuration: ['Release'] | |
platform: ['x64', 'Win32', 'aarch64'] | |
steps: | |
- uses: actions/[email protected] | |
with: | |
submodules: 'true' | |
fetch-depth: '0' | |
- name: setup-msbuild | |
uses: microsoft/setup-msbuild@v1 | |
- name: premake | |
run: | |
.\premake.bat vs2019 --deps=true --no-progress=true | |
- name: msbuild | |
run: | |
MSBuild.exe slang-glslang.sln -v:m -m -property:Configuration=${{matrix.configuration}} -property:Platform=${{matrix.platform}} -property:WindowsTargetPlatformVersion=10.0.19041.0 | |
# https://github.com/actions/upload-artifact | |
#- uses: actions/upload-artifact@v2 | |
# with: | |
# name: slang-glslang-windows-${{matrix.platform}}-${{matrix.configuration}} | |
# path: | | |
# bin/**/*.dll | |
# README.md | |