First Commit
This commit is contained in:
4
3rdparty/plutosvg/plutovg/.github/FUNDING.yml
vendored
Normal file
4
3rdparty/plutosvg/plutovg/.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
# These are supported funding model platforms
|
||||
|
||||
buy_me_a_coffee: sammycage
|
||||
custom: ['https://www.paypal.me/sammycage']
|
||||
57
3rdparty/plutosvg/plutovg/.github/workflows/main.yml
vendored
Normal file
57
3rdparty/plutosvg/plutovg/.github/workflows/main.yml
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
name: Build
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: Build with meson
|
||||
run: |
|
||||
pip install meson
|
||||
pip install ninja
|
||||
|
||||
meson setup build
|
||||
meson compile -C build
|
||||
|
||||
- name: Build with cmake
|
||||
run: |
|
||||
cmake .
|
||||
cmake --build .
|
||||
|
||||
macos:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: Build with meson
|
||||
run: |
|
||||
pip install meson
|
||||
pip install ninja
|
||||
|
||||
meson setup build
|
||||
meson compile -C build
|
||||
|
||||
- name: Build with cmake
|
||||
run: |
|
||||
cmake .
|
||||
cmake --build .
|
||||
|
||||
windows:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
- name: Build with meson
|
||||
run: |
|
||||
pip install meson
|
||||
pip install ninja
|
||||
|
||||
meson setup build
|
||||
meson compile -C build
|
||||
|
||||
- name: Build with cmake
|
||||
run: |
|
||||
cmake .
|
||||
cmake --build .
|
||||
Reference in New Issue
Block a user