From c5e392d5c8f9b50a6052b71d3c1f2e8579534302 Mon Sep 17 00:00:00 2001 From: NebulaOnion Date: Sat, 28 Jan 2023 15:38:17 +0000 Subject: [PATCH] Deprecate Drone CI (#83) Our Drone instance doesn't work anymore and Gitea is getting actions support very very soon. Reviewed-on: https://git.anonymousland.org/anonymousland/anonymousland/pulls/83 --- .drone.yml | 12 ------------ README.md | 1 - docker.sh | 11 ----------- start.sh | 3 --- update.sh | 9 --------- 5 files changed, 36 deletions(-) delete mode 100644 .drone.yml delete mode 100644 docker.sh delete mode 100755 start.sh delete mode 100644 update.sh diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 847dfe6..0000000 --- a/.drone.yml +++ /dev/null @@ -1,12 +0,0 @@ -kind: pipeline -name: Jekyll build -type: docker - -steps: -- name: build - image: ruby:3.1.3 - commands: - - gem update - - gem install bundler - - bundle install - - bundle exec jekyll build \ No newline at end of file diff --git a/README.md b/README.md index 04912ee..f90e7cf 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,6 @@
-![Drone (self-hosted)](https://img.shields.io/drone/build/anonymousland/anonymousland?server=https%3A%2F%2Fdrone.anonymousland.org&style=flat-square) ![Website](https://img.shields.io/website?down_color=red&down_message=down&style=flat-square&up_color=green&up_message=up&url=https%3A%2F%2Fanonymousland.org%2F) ![Security Headers](https://img.shields.io/security-headers?style=flat-square&url=https%3A%2F%2Fanonymousland.org%2F) ![GitHub contributors](https://img.shields.io/github/contributors/anonyland/anonymousland?label=GitHub%20contributors&style=flat-square) diff --git a/docker.sh b/docker.sh deleted file mode 100644 index 2e3c1bd..0000000 --- a/docker.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -docker run \ - --name=site \ - --network=site \ - --restart=always \ - --volume="$PWD:/srv/jekyll:Z" \ - --volume="$PWD/vendor/bundle:/usr/local/bundle:Z" \ - --detach \ - -it jekyll/jekyll \ - jekyll serve \ No newline at end of file diff --git a/start.sh b/start.sh deleted file mode 100755 index fa00d66..0000000 --- a/start.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash -bundle install -bundle exec jekyll serve \ No newline at end of file diff --git a/update.sh b/update.sh deleted file mode 100644 index 54c9523..0000000 --- a/update.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -docker run --rm \ - --name=site \ - --network=site \ - --volume="$PWD:/srv/jekyll:Z" \ - --volume="$PWD/vendor/bundle:/usr/local/bundle:Z" \ - -it jekyll/jekyll \ - gem update \ No newline at end of file