Compare commits

..

No commits in common. "2efa5ccec81ed934fc7cf188b6cdf165d895e4a6" and "1c908c4b825ab9b4a268cfb80fb3d9315568e4bd" have entirely different histories.

2 changed files with 6 additions and 17 deletions

View file

@ -7,8 +7,8 @@ jobs:
DIRECTORY: config DIRECTORY: config
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - run: cd ${{ env.DIRECTORY }}
with: - run: pip install -r requirements-dev.txt
python-version: '3.13' - run: ruff check
- run: pip install -r requirements.txt - run: ruff format
- run: make check - run: myp

View file

@ -18,7 +18,7 @@ services:
- CMD - CMD
- curl - curl
- '-f' - '-f'
- 'http://localhost:$${BUILDBOT_WEB_PORT}' - 'http://127.0.0.1:8010'
interval: 2s interval: 2s
timeout: 10s timeout: 10s
retries: 15 retries: 15
@ -50,14 +50,3 @@ services:
- 'WORKERNAME=${WORKERNAME:-example-worker}' - 'WORKERNAME=${WORKERNAME:-example-worker}'
- 'WORKERPASS=${WORKERPASS:-pass}' - 'WORKERPASS=${WORKERPASS:-pass}'
- 'WORKER_ENVIRONMENT_BLACKLIST=${WORKER_ENVIRONMENT_BLACKLIST:-DOCKER_BUILDBOT* BUILDBOT_ENV_* BUILDBOT_1* WORKER_ENVIRONMENT_BLACKLIST}' - 'WORKER_ENVIRONMENT_BLACKLIST=${WORKER_ENVIRONMENT_BLACKLIST:-DOCKER_BUILDBOT* BUILDBOT_ENV_* BUILDBOT_1* WORKER_ENVIRONMENT_BLACKLIST}'
healthcheck:
test:
- CMD
- curl
- '-f'
- 'http://$${BUILDMASTER}:$${BUILDMASTER_PORT}'
interval: 5s
timeout: 20s
retries: 10
volumes:
buildbot-db: {}