Luna/.drone.yml

26 lines
486 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:
- name: build-and-test
2022-12-05 18:11:22 +01:00
image: ubuntu
commands:
2022-12-05 18:19:55 +01:00
- apt update
2023-07-21 14:11:44 +02:00
- apt install build-essential cmake ninja-build wget nasm genext2fs qemu-system git -y
2022-12-23 11:06:37 +01: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
- tools/run-tests.sh
2022-12-05 18:00:05 +01:00
trigger:
branch:
2022-12-05 18:06:30 +01:00
- main
2022-12-05 18:00:05 +01:00
event:
2022-12-05 19:16:58 +01:00
- push
- pull_request