chore: drop references to circleci, libera, travis-ci
This commit is contained in:
@@ -1,31 +0,0 @@
|
|||||||
version: 2.1
|
|
||||||
|
|
||||||
commands:
|
|
||||||
build:
|
|
||||||
description: "run the build"
|
|
||||||
parameters:
|
|
||||||
python_version:
|
|
||||||
type: string
|
|
||||||
default: "3.7.0"
|
|
||||||
steps:
|
|
||||||
- checkout
|
|
||||||
|
|
||||||
executors:
|
|
||||||
machine:
|
|
||||||
machine:
|
|
||||||
docker_layer_caching: false
|
|
||||||
image: ubuntu-1604:201903-01
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-master:
|
|
||||||
environment:
|
|
||||||
DOKKU_VERSION: master
|
|
||||||
executor: machine
|
|
||||||
steps:
|
|
||||||
- build
|
|
||||||
|
|
||||||
workflows:
|
|
||||||
version: 2
|
|
||||||
build:
|
|
||||||
jobs:
|
|
||||||
- "build-master"
|
|
||||||
15
Makefile
15
Makefile
@@ -71,28 +71,15 @@ tmp/xunit-reader:
|
|||||||
tar xf tmp/xunit-reader.tgz -C tmp
|
tar xf tmp/xunit-reader.tgz -C tmp
|
||||||
chmod +x tmp/xunit-reader
|
chmod +x tmp/xunit-reader
|
||||||
|
|
||||||
tmp/xunit-to-github:
|
|
||||||
mkdir -p tmp
|
|
||||||
curl -o tmp/xunit-to-github.tgz -sL https://github.com/josegonzalez/go-xunit-to-github/releases/download/v$(XUNIT_TO_GITHUB_VERSION)/xunit-to-github_$(XUNIT_TO_GITHUB_VERSION)_$(SYSTEM_NAME)_$(HARDWARE).tgz
|
|
||||||
tar xf tmp/xunit-to-github.tgz -C tmp
|
|
||||||
chmod +x tmp/xunit-to-github
|
|
||||||
|
|
||||||
setup:
|
setup:
|
||||||
bash tests/setup.sh
|
bash tests/setup.sh
|
||||||
$(MAKE) ci-dependencies
|
$(MAKE) ci-dependencies
|
||||||
|
|
||||||
test: lint unit-tests
|
test: lint unit-tests
|
||||||
|
|
||||||
report: tmp/xunit-reader tmp/xunit-to-github
|
report: tmp/xunit-reader
|
||||||
tmp/xunit-reader -p 'tmp/test-results/bats/*.xml'
|
tmp/xunit-reader -p 'tmp/test-results/bats/*.xml'
|
||||||
tmp/xunit-reader -p 'tmp/test-results/shellcheck/*.xml'
|
tmp/xunit-reader -p 'tmp/test-results/shellcheck/*.xml'
|
||||||
ifdef TRAVIS_REPO_SLUG
|
|
||||||
ifdef GITHUB_ACCESS_TOKEN
|
|
||||||
ifneq ($(TRAVIS_PULL_REQUEST),false)
|
|
||||||
tmp/xunit-to-github --skip-ok --job-url "$(TRAVIS_JOB_WEB_URL)" --pull-request-id "$(TRAVIS_PULL_REQUEST)" --repository-slug "$(TRAVIS_REPO_SLUG)" --title "DOKKU_VERSION=$(DOKKU_VERSION)" tmp/test-results/bats tmp/test-results/shellcheck
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# dokku postgres [](https://circleci.com/gh/dokku/dokku-postgres/tree/master) [](https://webchat.freenode.net/?channels=dokku)
|
# dokku postgres [](https://github.com/dokku/dokku-postgres/actions/workflows/ci.yml?query=branch%3Amaster) [](https://webchat.libera.chat/?channels=dokku)
|
||||||
|
|
||||||
Official postgres plugin for dokku. Currently defaults to installing [postgres 11.6](https://hub.docker.com/_/postgres/).
|
Official postgres plugin for dokku. Currently defaults to installing [postgres 11.6](https://hub.docker.com/_/postgres/).
|
||||||
|
|
||||||
|
|||||||
@@ -35,8 +35,8 @@ def header(service):
|
|||||||
return " ".join(
|
return " ".join(
|
||||||
[
|
[
|
||||||
f"# dokku {service}",
|
f"# dokku {service}",
|
||||||
f'[](https://circleci.com/gh/dokku/dokku-{service}/tree/master)',
|
f'[](https://github.com/dokku/dokku-{service}/actions/workflows/ci.yml?query=branch%3Amaster)',
|
||||||
f'[](https://webchat.freenode.net/?channels=dokku)',
|
f'[](https://webchat.libera.chat/?channels=dokku)',
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -511,7 +511,7 @@ def main():
|
|||||||
base_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
base_path = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
|
||||||
readme_file = os.path.join(base_path, "README.md")
|
readme_file = os.path.join(base_path, "README.md")
|
||||||
with open(readme_file, "w") as f:
|
with open(readme_file, "w") as f:
|
||||||
f.write(text)
|
f.write(text + "\n")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
Reference in New Issue
Block a user