Luna/.drone.yml
apio 0a472000be
All checks were successful
continuous-integration/drone/push Build is passing
Fix CI by providing a host C++ compiler
2023-01-06 19:00:32 +01:00

27 lines
467 B
YAML

kind: pipeline
type: docker
name: test
platform:
arch: arm64
os: linux
steps:
- name: build
image: ubuntu
commands:
- apt update
- apt install build-essential cmake ninja-build wget nasm -y
- 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/rebuild-iso.sh
trigger:
branch:
- main
- restart
event:
- push
- pull_request