Skip to content

Commit 8f7b9c5

Browse files
committed
[WIP] New CI
1 parent 4dca9f3 commit 8f7b9c5

33 files changed

+59
-1029
lines changed

.ci/after_deploy.sh

-15
This file was deleted.

.ci/ansible-setup.sh

-24
This file was deleted.

.ci/docker/debian/Dockerfile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
FROM debian:10.9-slim
2+
3+
ENV DEBIAN_FRONTEND="noninteractive"
4+
5+
RUN apt-get update \
6+
&& apt-get upgrade -y \
7+
&& apt-get install -y \
8+
# Direct dependencies:
9+
curl \
10+
gawk \
11+
git \
12+
gnupg \
13+
# Assumed to be present:
14+
procps \
15+
make \
16+
# Cleaning cache:
17+
&& apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false \
18+
&& apt-get clean -y && rm -rf /var/lib/apt/lists/*

.ci/github_release_script.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# https://github.com/travis-ci/dpl/issues/155
44
# https://gist.github.com/Jaskaranbir/d5b065173b3a6f164e47a542472168c1
@@ -10,7 +10,7 @@ echo "LAST_RELEASE_TAG=$LAST_RELEASE_TAG"
1010
# An automatic changelog generator
1111
gem install github_changelog_generator
1212

13-
# move the manual log out of the way else it will be used by the tool.
13+
# move the manual log out of the way else it will be used by the tool.
1414
rm CHANGELOG.md
1515

1616
# Generate CHANGELOG.md

.ci/integration/gnupg-git/default.yml

-153
This file was deleted.

.ci/integration/gnupg-git/serverspec/default_spec.rb

-53
This file was deleted.

.ci/integration/gnupg-git/serverspec/spec_helper.rb

-11
This file was deleted.

.ci/integration/gnupg1/default.yml

-46
This file was deleted.

.ci/integration/gnupg1/serverspec/default_spec.rb

-53
This file was deleted.

0 commit comments

Comments
 (0)