Luna/.drone.yml

20 lines
419 B
YAML
Raw Normal View History

2022-12-05 17:00:05 +00:00
kind: pipeline
type: docker
name: lint-pr
steps:
2022-12-05 17:06:30 +00:00
- name: setup-env
image: ubuntu:latest
commands:
- apt install build-essential cmake ninja-build wget
- wget https://pub.cloudapio.eu/luna/toolchain-linux-arm64.tar.gz
- tar xf toolchain-linux-arm64.tar.gz
- tools/check-formatting.sh
- tools/rebuild-iso.sh
2022-12-05 17:00:05 +00:00
trigger:
branch:
2022-12-05 17:06:30 +00:00
- main
- restart
2022-12-05 17:00:05 +00:00
event:
2022-12-05 17:06:30 +00:00
- pull_request