Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 56 additions & 56 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.


Expand Down