From ac3175cf262a36b2f923f944205b81105c942cbe Mon Sep 17 00:00:00 2001 From: apio Date: Tue, 6 Feb 2024 22:38:27 +0100 Subject: [PATCH] Remove old drone.yml Now that we use Gitea Actions, this is no longer needed. --- .drone.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index d32f44d1..00000000 --- a/.drone.yml +++ /dev/null @@ -1,25 +0,0 @@ -kind: pipeline -type: docker -name: test - -platform: - arch: arm64 - os: linux - -steps: -- name: build-and-test - image: ubuntu - commands: - - apt update - - apt install build-essential cmake ninja-build wget nasm genext2fs qemu-system git -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/run-tests.sh - -trigger: - branch: - - main - event: - - push - - pull_request