From f3d2a72abd8474f99af754bff2eaece113234e5a Mon Sep 17 00:00:00 2001
From: Nicholas Flynt <nicholas.flynt@suse.com>
Date: Fri, 24 May 2024 13:04:38 -0400
Subject: [PATCH] Remove drone integration

Note: this also removes the FOSSA step! Be sure we create an issue
to re-add this at a later date, if we decide to do that.
---
 .drone.yml | 59 ------------------------------------------------------
 1 file changed, 59 deletions(-)
 delete mode 100644 .drone.yml

diff --git a/.drone.yml b/.drone.yml
deleted file mode 100644
index f1761624..00000000
--- a/.drone.yml
+++ /dev/null
@@ -1,59 +0,0 @@
----
-kind: pipeline
-name: fossa
-
-steps:
-  - name: fossa
-    image: rancher/drone-fossa:latest
-    settings:
-      api_key:
-        from_secret: FOSSA_API_KEY
-    when:
-      instance:
-        include:
-          - drone-publish.rancher.io
-        exclude:
-          - drone-pr.rancher.io
----
-kind: pipeline
-name: build
-
-steps:
-  - name: build
-    image: registry.suse.com/bci/golang:1.22
-    commands:
-      - make build-bin
-    when:
-      event:
-        - push
-        - pull_request
----
-kind: pipeline
-name: validate
-
-steps:
-  - name: validate
-    image: registry.suse.com/bci/bci-base:15.6
-    commands:
-      - zypper in -y "golang(API)=1.22" git tar gzip make
-      - curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.57.1
-      - mv ./bin/golangci-lint /usr/local/bin/golangci-lint
-      - GOBIN=/usr/local/bin go install github.com/golang/mock/mockgen@v1.6.0
-      - make validate
-    when:
-      event:
-        - push
-        - pull_request
----
-kind: pipeline
-name: test
-
-steps:
-  - name: test
-    image: registry.suse.com/bci/golang:1.22
-    commands:
-      - make test
-    when:
-      event:
-        - push
-        - pull_request