Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f11f34287a | ||
|
|
5e41d13684 | ||
|
|
f2197fd2a5 | ||
|
|
2d6ef274e0 |
@@ -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
|
||||||
|
|||||||
@@ -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:
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# dokku mysql [](https://travis-ci.org/dokku/dokku-mysql) [](https://webchat.freenode.net/?channels=dokku)
|
# dokku mysql [](https://circleci.com/gh/dokku/dokku-mysql/tree/master) [](https://webchat.freenode.net/?channels=dokku)
|
||||||
|
|
||||||
Official mysql plugin for dokku. Currently defaults to installing [mysql 5.7.28](https://hub.docker.com/_/mysql/).
|
Official mysql plugin for dokku. Currently defaults to installing [mysql 5.7.28](https://hub.docker.com/_/mysql/).
|
||||||
|
|
||||||
|
|||||||
@@ -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"[](https://travis-ci.org/dokku/dokku-{service})",
|
f"[](https://circleci.com/gh/dokku/dokku-{service}/tree/master)",
|
||||||
f"[](https://webchat.freenode.net/?channels=dokku)",
|
f"[](https://webchat.freenode.net/?channels=dokku)",
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
[plugin]
|
[plugin]
|
||||||
description = "dokku mysql service plugin"
|
description = "dokku mysql service plugin"
|
||||||
version = "1.11.2"
|
version = "1.11.3"
|
||||||
[plugin.config]
|
[plugin.config]
|
||||||
|
|||||||
Reference in New Issue
Block a user