Luna/.drone.yml

26 lines
464 B
YAML
Raw Normal View History

2022-12-05 18:00:05 +01:00
kind: pipeline
type: docker
2022-12-05 19:19:50 +01:00
name: test
2022-12-05 18:11:22 +01:00
platform:
arch: arm64
2022-12-05 19:26:27 +01:00
os: linux
2022-12-05 18:00:05 +01:00
steps:
2022-12-05 18:48:40 +01:00
- name: build
2022-12-05 18:11:22 +01:00
image: ubuntu
commands:
2022-12-05 18:19:55 +01:00
- apt update
2022-12-05 18:26:31 +01:00
- apt install build-essential cmake ninja-build wget nasm -y
2022-12-05 18:24:34 +01:00
- wget https://pub.cloudapio.eu/luna/toolchain-linux-arm64.tar.gz --quiet
2022-12-05 18:13:12 +01:00
- tar xf toolchain-linux-arm64.tar.gz
2022-12-05 18:44:44 +01:00
- rm toolchain-linux-arm64.tar.gz
2022-12-05 18:13:12 +01:00
- tools/rebuild-iso.sh
2022-12-05 18:00:05 +01:00
trigger:
branch:
2022-12-05 18:06:30 +01:00
- main
- restart
2022-12-05 18:00:05 +01:00
event:
2022-12-05 19:16:58 +01:00
- push
2022-12-05 18:06:30 +01:00
- pull_request