Luna/.drone.yml
apio e6384ae90d
All checks were successful
continuous-integration/drone/push Build is passing
Use the new toolchain location
2022-12-23 11:06:37 +01:00

26 lines
466 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