librashader/.github/workflows/build.yml
2023-11-29 03:26:58 -05:00

50 lines
1.3 KiB
YAML

name: build librashader-capi
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "0 0 * * 6"
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
profile: ['debug', 'release', 'optimized']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install nightly Rust
uses: actions-rs/toolchain@v1.0.6
with:
toolchain: nightly
override: true
- uses: actions/setup-python@v1
name: Setup Python
with:
python-version: '3.x'
- name: Install Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.1.1
with:
version: latest
cache: true
- run: pip install meson ninja mako
name: Install Meson for spirv-to-dxil-sys
# - if: runner.os == 'Windows'
# name: Install winflexbison
# run: choco install winflexbison3
- name: Build dynamic library
run: cargo run -p librashader-build-script -- --profile ${{ matrix.profile }}
- name: Upload build artifacts
uses: actions/upload-artifact@v3.1.2
with:
name: ${{ format('build-outputs-{0}-{1}', matrix.os, matrix.profile) }}
path: ${{ format('target/{0}/librashader.*', matrix.profile) }}