Compare commits

...

4 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
1e43387487 Release 1.12.3 2020-05-14 23:00:57 -04:00
Jose Diaz-Gonzalez
7a003dea68 chore: update copyright date 2020-05-14 22:57:39 -04:00
Jose Diaz-Gonzalez
0aefafed16 docs: switch build shield to circleci 2020-04-05 20:41:00 -04:00
Jose Diaz-Gonzalez
2f72b26396 tests: use circleci 2.1 2020-04-05 20:40:20 -04:00
5 changed files with 37 additions and 45 deletions

View File

@@ -1,24 +1,25 @@
version: 2 version: 2.1
jobs:
build-master: commands:
environment: build:
DOKKU_VERSION: master description: "run the build"
machine: parameters:
docker_layer_caching: false python_version:
image: ubuntu-1604:201903-01 type: string
default: "3.7.0"
steps: steps:
- checkout - checkout
- run: pyenv global 3.7.0 - run: pyenv global << parameters.python_version >>
- run: make setup - run: make setup
- run: sudo sysctl -w vm.max_map_count=262144 - run: sudo sysctl -w vm.max_map_count=262144
- run: - run:
command: | command: |
make generate; make generate
if [[ $(git diff) ]]; then if ! git diff --quiet README.md; then
echo "Please run `make generate`"; echo "Please run `make generate`"
git status --short; git status --short
git diff; git --no-pager diff README.md
exit 1; exit 1
fi fi
- run: make test - run: make test
- store_artifacts: - store_artifacts:
@@ -30,35 +31,26 @@ jobs:
- store_test_results: - store_test_results:
path: tmp/test-results path: tmp/test-results
build-version: executors:
environment: machine:
DOKKU_VERSION: v0.19.0
machine: machine:
docker_layer_caching: false docker_layer_caching: false
image: ubuntu-1604:201903-01 image: ubuntu-1604:201903-01
jobs:
build-master:
environment:
DOKKU_VERSION: master
executor: machine
steps: steps:
- checkout - build
- run: pyenv global 3.7.0
- run: make setup build-version:
- run: sudo sysctl -w vm.max_map_count=262144 environment:
- run: DOKKU_VERSION: v0.19.0
command: | executor: machine
make generate; steps:
if [[ $(git diff) ]]; then - build
echo "Please run `make generate`";
git status --short;
git diff;
exit 1;
fi
- run: make test
- store_artifacts:
path: build
destination: build
- store_artifacts:
path: tmp/test-results
destination: test-results
- store_test_results:
path: tmp/test-results
workflows: workflows:
version: 2 version: 2

View File

@@ -1,4 +1,4 @@
Copyright (C) 2018 Jose Diaz-Gonzalez Copyright (C) 2020 Jose Diaz-Gonzalez
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

View File

@@ -1,4 +1,4 @@
# dokku redis [![Build Status](https://img.shields.io/travis/dokku/dokku-redis.svg?branch=master "Build Status")](https://travis-ci.org/dokku/dokku-redis) [![IRC Network](https://img.shields.io/badge/irc-freenode-blue.svg "IRC Freenode")](https://webchat.freenode.net/?channels=dokku) # dokku redis [![Build Status](https://img.shields.io/circleci/project/github/dokku/dokku-redis.svg?branch=master&style=flat-square "Build Status")](https://circleci.com/gh/dokku/dokku-redis/tree/master) [![IRC Network](https://img.shields.io/badge/irc-freenode-blue.svg?style=flat-square "IRC Freenode")](https://webchat.freenode.net/?channels=dokku)
Official redis plugin for dokku. Currently defaults to installing [redis 5.0.7](https://hub.docker.com/_/redis/). Official redis plugin for dokku. Currently defaults to installing [redis 5.0.7](https://hub.docker.com/_/redis/).

View File

@@ -19,8 +19,8 @@ def compile(service, version, alias, scheme, ports, unimplemented, dokku_version
def header(service): def header(service):
return " ".join([ return " ".join([
f"# dokku {service}", f"# dokku {service}",
f"[![Build Status](https://img.shields.io/travis/dokku/dokku-{service}.svg?branch=master \"Build Status\")](https://travis-ci.org/dokku/dokku-{service})", f"[![Build Status](https://img.shields.io/circleci/project/github/dokku/dokku-{service}.svg?branch=master&style=flat-square \"Build Status\")](https://circleci.com/gh/dokku/dokku-{service}/tree/master)",
f"[![IRC Network](https://img.shields.io/badge/irc-freenode-blue.svg \"IRC Freenode\")](https://webchat.freenode.net/?channels=dokku)", f"[![IRC Network](https://img.shields.io/badge/irc-freenode-blue.svg?style=flat-square \"IRC Freenode\")](https://webchat.freenode.net/?channels=dokku)",
]) ])

View File

@@ -1,4 +1,4 @@
[plugin] [plugin]
description = "dokku redis service plugin" description = "dokku redis service plugin"
version = "1.12.2" version = "1.12.3"
[plugin.config] [plugin.config]