"Release 1.54 - January 2nd, 2024 - Remote UI Control | Shader Server… #13
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: "[MacOS] Build TF Examples" | |
on: | |
push: | |
jobs: | |
macOS: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-10.15, macos-11] | |
skipbuild: ["--skipmacosbuild", "--skipiosbuild"] | |
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: Print disk space | |
shell: pwsh | |
run: Get-PSDrive | |
- name: Build | |
working-directory: The-Forge | |
run: python -u ./CI/PyBuild.py --preserveworkingdir --prebuild --printbuildoutput --skipioscodesigning ${{ matrix.skipbuild }} | |
- name: Print disk space | |
if: always() | |
shell: pwsh | |
run: Get-PSDrive |