entice/.drone.yml

23 lines
409 B
YAML
Raw Normal View History

2022-04-16 07:46:16 -07:00
---
kind: pipeline
name: ci-amd64
platform:
os: linux
arch: amd64
steps:
- name: dependencies
image: gcc
commands:
- apt-get -qq update
- apt install build-essential meson ninja-build python3-pip python3-setuptools
- pip3 install --upgrade pip
- pip3 install meson --user
- name: install
image: gcc
commands:
- mkdir builddir
- cd builddir
2022-04-16 07:47:39 -07:00
- meson .. --prefix=/usr/local/
2022-04-16 07:46:16 -07:00
- ninja