glTF-SDK/.github/workflows/ci.yml

31 строка
743 B
YAML

name: Master - CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: 0 23 * * 1-5
jobs:
# Windows
build-windows:
uses: ./.github/workflows/windows.yml
with:
cmake-version: '3.26.3'
platforms: "['x64', 'Win32', 'ARM', 'ARM64']"
configurations: "['Release', 'Debug']"
# MacOS
build-macos:
uses: ./.github/workflows/macos.yml
with:
cmake-version: '3.26.3'
platforms: "['macOS']"
configurations: "['Release', 'Debug']"
# iOS
build-ios:
uses: ./.github/workflows/ios.yml
with:
cmake-version: '3.26.3'
platforms: "['iOS']"
configurations: "['Release', 'Debug']"