8000 example: arrange the particle bg brightness · thorvg/thorvg@2080111 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

example: arrange the particle bg brightness #5265

example: arrange the particle bg brightness

example: arrange the particle bg brightness #5265

Workflow file for this run

name: Windows
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Install Packages
run: |
pip install meson ninja
- name: Build
run: |
meson setup build -Dlog=true -Dloaders=all -Dsavers=all -Dbindings=capi -Dtools=all
where link
ninja -C build install
- uses: actions/upload-artifact@v4
with:
name: result_windows
path: build/src/thorvg*
compact_test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Install Packages
run: |
pip install meson ninja
- name: Build
run: |
meson setup build -Dlog=true -Dloaders=all -Dsavers=all -Dstatic=true -Dthreads=false
where link
ninja -C build install
- uses: actions/upload-artifact@v4
with:
name: result_windows_static
path: build/src/thorvg*
unit_test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Install Packages
run: |
pip install meson ninja
- name: Build
run: |
meson setup build -Dloaders=all -Dsavers=all -Dbindings=capi -Dtests=true --errorlogs
where link
ninja -C build install test
- uses: actions/upload-artifact@v4
with:
name: UnitTestReport
path: build/meson-logs/testlog.txt
0