From 41e42341080742f6a1a1e0a91495f9849e669070 Mon Sep 17 00:00:00 2001 From: Tom Limoncelli <6293917+tlimoncelli@users.noreply.github.com> Date: Wed, 5 Nov 2025 10:44:20 -0500 Subject: [PATCH] feat(all) abandon all hope ye who enter here (#390) * feat(all) abandon all hope ye who enter here * remove circleci --- .circleci/config.yml | 112 +++++++++++++++++++++---------------------- README.md | 6 +++ 2 files changed, 62 insertions(+), 56 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6552ddc..89e3edc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,56 +1,56 @@ -version: 2 - -workflows: - version: 2 - build_and_test: - jobs: - - debian - - ubuntu - -jobs: - - debian: - docker: - - image: debian:9.1 - steps: - - checkout - - run: - name: 'Installing' - command: | - apt-get update -y - apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev - gem install fpm - - run: - name: 'Cleaning' - command: | - rm -rf ~/.gpnupg - make clean - - run: - name: 'Testing' - command: | - GPG=gpg2 make test - make packages-deb - make packages-rpm - - ubuntu: - docker: - - image: ubuntu:16.04 - steps: - - checkout - - run: - name: 'Installing' - command: | - apt-get update -y - apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev - gem install fpm - - run: - name: 'Cleaning' - command: | - rm -rf ~/.gpnupg - make clean - - run: - name: 'Testing' - command: | - GPG=gpg2 make test - make packages-deb - make packages-rpm +#version: 2 +# +#workflows: +# version: 2 +# build_and_test: +# jobs: +# - debian +# - ubuntu +# +#jobs: +# +# debian: +# docker: +# - image: debian:9.1 +# steps: +# - checkout +# - run: +# name: 'Installing' +# command: | +# apt-get update -y +# apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev +# gem install fpm +# - run: +# name: 'Cleaning' +# command: | +# rm -rf ~/.gpnupg +# make clean +# - run: +# name: 'Testing' +# command: | +# GPG=gpg2 make test +# make packages-deb +# make packages-rpm +# +# ubuntu: +# docker: +# - image: ubuntu:16.04 +# steps: +# - checkout +# - run: +# name: 'Installing' +# command: | +# apt-get update -y +# apt-get install -y build-essential expect git gnupg2 pinentry-tty procps rpm ruby-dev libffi-dev +# gem install fpm +# - run: +# name: 'Cleaning' +# command: | +# rm -rf ~/.gpnupg +# make clean +# - run: +# name: 'Testing' +# command: | +# GPG=gpg2 make test +# make packages-deb +# make packages-rpm diff --git a/README.md b/README.md index 7d5afc2..a551a10 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ BlackBox [![CircleCI](https://circleci.com/gh/StackExchange/blackbox.svg?style=shield)](https://circleci.com/gh/StackExchange/workflows/blackbox) [![Build Status](https://github.com/StackExchange/blackbox/workflows/build/badge.svg)](https://github.com/StackExchange/blackbox/actions?query=workflow%3Abuild+branch%3Amaster) ======== +THIS PROJECT IS ABANDONED. DO NOT USE. DO NOT SUBMIT BUG REPORTS OR PRs. + +There are plenty of other, better, projects. A partial list is listed under "Alternatives" below. + +======== + Safely store secrets in a VCS repo (i.e. Git, Mercurial, Subversion or Perforce). These commands make it easy for you to Gnu Privacy Guard (GPG) encrypt specific files in a repo so they are "encrypted at rest" in your repository. However, the scripts make it easy to decrypt them when you need to view or edit them, and decrypt them for use in production. Originally written for Puppet, BlackBox now works with any Git or Mercurial repository.