Skip to content

Commit

Permalink
send task_received signal before receive log
Browse files Browse the repository at this point in the history
  • Loading branch information
Niccolum committed Jan 30, 2024
2 parents 1a5af22 + 2b3fde4 commit 16fa66b
Show file tree
Hide file tree
Showing 107 changed files with 2,833 additions and 388 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 5.3.6
current_version = 5.4.0rc1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z\d]+)?
Expand Down
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ contact_links:
- name: py-amqp Issue Tracker
url: https://github.com/celery/py-amqp/issues/
about: If this issue only involves py-amqp, please open a new issue there.
- name: pytest-celery Issue Tracker
url: https://github.com/celery/pytest-celery/issues/
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ updates:
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -52,7 +52,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -66,4 +66,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
42 changes: 41 additions & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,44 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build Docker container
run: make docker-build
run: make docker-build

docker-docs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: Build Documentation
run: make docker-docs

smoke-tests_dev:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: "Build smoke tests container: dev"
run: docker build -f t/smoke/workers/docker/dev .

smoke-tests_latest:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: "Build smoke tests container: latest"
run: docker build -f t/smoke/workers/docker/pypi .

smoke-tests_pypi:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: "Build smoke tests container: pypi"
run: docker build -f t/smoke/workers/docker/pypi --build-arg CELERY_VERSION="5" .

smoke-tests_legacy:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: "Build smoke tests container: legacy"
run: docker build -f t/smoke/workers/docker/pypi --build-arg CELERY_VERSION="4" .

0 comments on commit 16fa66b

Please sign in to comment.