From 36223256d8a26dcc5dabe15a66b6727c3700ee00 Mon Sep 17 00:00:00 2001 From: Patrick Gaskin Date: Sat, 6 Dec 2025 20:55:54 -0500 Subject: [PATCH] Remove drone config --- .drone.yml | 77 ------------------------------------------------------ 1 file changed, 77 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index e91a807..0000000 --- a/.drone.yml +++ /dev/null @@ -1,77 +0,0 @@ -kind: pipeline -type: docker -name: NickelMenu - -trigger: - event: [push, pull_request, tag] - -steps: -- name: submodules - image: ghcr.io/pgaskin/nickeltc:1.0 - when: - event: [push, pull_request, tag] - command: ["git", "submodule", "update", "--init", "--recursive"] -- name: build - image: ghcr.io/pgaskin/nickeltc:1.0 - when: - event: [push, pull_request, tag] - commands: - - make clean - - make all koboroot - - mkdir out && mv KoboRoot.tgz src/libnm.so out/ - depends_on: [submodules] -- name: build-NM_UNINSTALL_CONFIGDIR - image: ghcr.io/pgaskin/nickeltc:1.0 - when: - event: [push, pull_request, tag] - commands: - - make clean - - make all koboroot NM_UNINSTALL_CONFIGDIR=1 - - mkdir out/with-NM_UNINSTALL_CONFIGDIR && mv KoboRoot.tgz src/libnm.so out/with-NM_UNINSTALL_CONFIGDIR/ - depends_on: [build] -- name: test-syms - image: golang:1.14 - when: - event: [push, pull_request, tag] - commands: - - cd test/syms && go build -o ../../test.syms . && cd ../.. - - cd src && ../test.syms && cd .. -- name: upload-build - image: plugins/s3 - when: - event: [push] - settings: - endpoint: https://s3.geek1011.net - bucket: nickelmenu - access_key: nickelmenu - secret_key: {from_secret: S3_SECRET_NICKELMENU} - target: artifacts/build/${DRONE_BUILD_NUMBER} - source: out/**/* - strip_prefix: out/ - depends_on: [build, build-NM_UNINSTALL_CONFIGDIR] -- name: upload-tag - image: plugins/s3 - when: - event: [tag] - settings: - endpoint: https://s3.geek1011.net - bucket: nickelmenu - access_key: nickelmenu - secret_key: {from_secret: S3_SECRET_NICKELMENU} - target: artifacts/tag/${DRONE_TAG} - source: out/**/* - strip_prefix: out/ - depends_on: [build, build-NM_UNINSTALL_CONFIGDIR] -- name: upload-commit - image: plugins/s3 - when: - event: [push] - settings: - endpoint: https://s3.geek1011.net - bucket: nickelmenu - access_key: nickelmenu - secret_key: {from_secret: S3_SECRET_NICKELMENU} - target: artifacts/commit/${DRONE_COMMIT} - source: out/**/* - strip_prefix: out/ - depends_on: [build, build-NM_UNINSTALL_CONFIGDIR]