Skip to content

Updated prebuilds

Updated prebuilds #14

Workflow file for this run

name: "[Windows] Build TF Examples"
on:
push:
jobs:
windows:
strategy:
fail-fast: false
matrix:
os: [windows-2019, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout The-Forge
uses: actions/checkout@v3
with:
path: The-Forge
- name: Checkout Custom-Middleware
uses: actions/checkout@v3
with:
path: Custom-Middleware
repository: ${{ github.repository_owner }}/Custom-Middleware
ref: ${{ github.ref_name }} # Checkout the Custom-Middleware branch with the same name as the The-Forge branch we're building
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Vulkan SDK
run: choco install vulkan-sdk --version 1.2.162.0
- name: Install VS2017
uses: nick-fields/[email protected]
with:
max_attempts: 3
timeout_minutes: 30
command: choco install VisualStudio2017Community visualstudio2017-workload-nativedesktop
- name: Setup MSBuild
uses: microsoft/[email protected]
with:
vs-version: '[15.0,16.0)'
- name: Print disk space
shell: pwsh
run: Get-PSDrive
- name: Build
working-directory: The-Forge
shell: cmd
run: python -u ./CI/PyBuild.py --preserveworkingdir --printbuildoutput
env:
VULKAN_SDK: "C:\\VulkanSDK\\1.2.162.0"
- name: Print disk space
if: always()
shell: pwsh
run: Get-PSDrive