Luna/.drone.yml

26 lines
463 B
YAML
Raw Normal View History

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