mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 16:55:37 +00:00
13 lines
351 B
YAML
13 lines
351 B
YAML
|
language:
|
||
|
- csharp
|
||
|
|
||
|
before_install:
|
||
|
- sudo apt-get install -y git python3-pip unzip
|
||
|
- wget https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-linux.zip
|
||
|
- unzip ninja-linux.zip
|
||
|
- sudo mv ninja /usr/bin/
|
||
|
- sudo pip3 install git+https://github.com/mesonbuild/meson/
|
||
|
|
||
|
script:
|
||
|
- meson build/ && ninja -C build/
|