librashader/.github/workflows/build.yml

48 lines
1.3 KiB
YAML
Raw Normal View History

name: build librashader-capi for x86_64
2023-01-15 15:13:32 -05:00
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
2023-01-15 15:23:19 -05:00
schedule:
- cron: "0 0 * * 6"
2023-01-15 15:13:32 -05:00
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
2023-02-11 18:30:28 -05:00
profile: ['debug', 'release', 'optimized']
fail-fast: false
2023-01-15 15:13:32 -05:00
runs-on: ${{ matrix.os }}
steps:
2023-01-16 01:06:15 -05:00
- name: Checkout repository
uses: actions/checkout@v3
- name: Install nightly Rust
2023-01-15 15:23:19 -05:00
uses: actions-rs/toolchain@v1.0.6
with:
toolchain: nightly
override: true
2023-11-29 01:31:45 -05:00
- uses: actions/setup-python@v1
2023-11-29 01:51:29 -05:00
name: Setup Python 3.11
2023-11-29 01:31:45 -05:00
with:
2024-02-03 02:46:18 -05:00
python-version: '3.11'
2023-11-29 01:41:15 -05:00
- name: Install Vulkan SDK
uses: humbletim/install-vulkan-sdk@v1.1.1
2023-01-15 15:59:53 -05:00
with:
2023-11-29 01:41:15 -05:00
version: latest
cache: true
2023-11-29 01:57:34 -05:00
- if: runner.os == 'Windows'
run: pip install meson ninja mako
2023-02-06 02:20:11 -05:00
name: Install Meson for spirv-to-dxil-sys
2023-01-15 15:13:32 -05:00
- name: Build dynamic library
run: cargo run -p librashader-build-script -- --profile ${{ matrix.profile }}
2023-01-15 15:23:19 -05:00
- name: Upload build artifacts
2023-01-15 15:13:32 -05:00
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) }}