mirror of https://github.com/peter4431/rq.git
override DefaultSerializer, debug unserialized
parent
f15cad4501
commit
69e6ba2392
@ -1,109 +0,0 @@
|
||||
name: Dependencies
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# View https://docs.github.com/en/actions/reference/events-that-trigger-workflows#schedule
|
||||
- cron: '0 12 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.repository == 'rq/rq'
|
||||
name: Python${{ matrix.python-version }}/Redis${{ matrix.redis-version }}/redis-py${{ matrix.redis-py-version }}
|
||||
runs-on: ubuntu-20.04
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10", "3.11"]
|
||||
redis-version: [3, 4, 5, 6, 7]
|
||||
redis-py-version: [3.5.0]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4.6.1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Start Redis
|
||||
uses: supercharge/redis-github-action@1.5.0
|
||||
with:
|
||||
redis-version: ${{ matrix.redis-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install redis==${{ matrix.redis-py-version }}
|
||||
pip install -r requirements.txt -r dev-requirements.txt
|
||||
pip install -e .
|
||||
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
RUN_SLOW_TESTS_TOO=1 pytest --durations=5
|
||||
|
||||
dependency-build:
|
||||
name: Check development branches of dependencies
|
||||
runs-on: ubuntu-latest
|
||||
needs: build
|
||||
if: success()
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.6", "3.7", "3.8.3", "3.9", "3.10", "3.11"]
|
||||
redis-version: [3, 4, 5, 6, 7]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4.6.1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Start Redis
|
||||
uses: supercharge/redis-github-action@1.5.0
|
||||
with:
|
||||
redis-version: ${{ matrix.redis-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install git+https://github.com/redis/redis-py
|
||||
pip install git+https://github.com/pallets/click
|
||||
pip install -r dev-requirements.txt
|
||||
pip install -e .
|
||||
|
||||
- name: Test with pytest
|
||||
run: RUN_SLOW_TESTS_TOO=1 pytest --durations=5 > log.txt 2>&1
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: dependencies-error
|
||||
path: log.txt
|
||||
if: failure()
|
||||
|
||||
issue:
|
||||
name: Create failure issue
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
if: failure()
|
||||
needs: dependency-build
|
||||
|
||||
steps:
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: dependencies-error
|
||||
path: .
|
||||
|
||||
- name: Create failure issue
|
||||
run: |
|
||||
if [[ "$(curl --url https://api.github.com/repos/${{ github.repository }}/issues?creator=github-actions --request GET)" != *"\""* ]]
|
||||
then curl --request POST \
|
||||
--url https://api.github.com/repos/${{ github.repository }}/issues \
|
||||
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
|
||||
--header 'content-type: application/json' \
|
||||
--data "{
|
||||
\"title\": \"RQ maybe may not work with dependencies in the future\",
|
||||
\"body\": \"This issue was automatically created by the GitHub Action workflow **${{ github.workflow }}**. \n\n View log: \n\n \`\`\` \n $(cat log.txt | while read line; do echo -n "$line\n"; done | sed -r 's/"/\\"/g') \n \`\`\`\"
|
||||
}"
|
||||
fi
|
@ -1,55 +0,0 @@
|
||||
name: Docker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
tags: [ '*' ]
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
permissions:
|
||||
contents: read write # to fetch code (actions/checkout)
|
||||
packages: write
|
||||
|
||||
jobs:
|
||||
push:
|
||||
if: github.repository == 'rq/rq'
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Push
|
||||
run: |
|
||||
# Parse Version
|
||||
# "master" -> "master"
|
||||
# "v1.2.3" -> "1.2.3", "1.2", "1", "latest"
|
||||
|
||||
VERSIONS=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,')
|
||||
|
||||
[[ "${{ github.ref }}" == "refs/tags/"* ]] && {
|
||||
VERSIONS=$(echo $VERSIONS | sed -e 's/^v//')
|
||||
i="$VERSIONS"
|
||||
while [[ "$i" == *"."* ]]
|
||||
do i="$(echo "$i" | sed 's/\(.*\)\..*/\1/g')"
|
||||
VERSIONS="$VERSIONS $i"
|
||||
done
|
||||
VERSIONS="$VERSIONS latest"
|
||||
}
|
||||
|
||||
echo Building with tags: $VERSIONS
|
||||
|
||||
# Login to registries
|
||||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
||||
echo "${{ secrets.DOCKER_TOKEN }}" | docker login -u selwin --password-stdin
|
||||
|
||||
# Build image
|
||||
docker build . --tag worker
|
||||
|
||||
# Tag and Push
|
||||
for VERSION in $VERSIONS
|
||||
do docker tag worker redisqueue/worker:$VERSION
|
||||
docker push redisqueue/worker:$VERSION
|
||||
docker tag worker docker.pkg.github.com/rq/rq/worker:$VERSION
|
||||
docker push docker.pkg.github.com/rq/rq/worker:$VERSION
|
||||
done
|
@ -1,37 +0,0 @@
|
||||
name: Lint rq
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: ubuntu-20.04
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4.6.1
|
||||
with:
|
||||
python-version: 3.8
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install black ruff
|
||||
|
||||
- name: Lint with black
|
||||
run: |
|
||||
black --check --skip-string-normalization --line-length 120 rq tests
|
||||
|
||||
- name: Lint with ruff
|
||||
run: |
|
||||
# stop the build if there are Python syntax errors.
|
||||
ruff check --show-source rq tests
|
@ -1,107 +0,0 @@
|
||||
name: Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
permissions:
|
||||
contents: read # to fetch code (actions/checkout)
|
||||
|
||||
jobs:
|
||||
ssl-test:
|
||||
name: Run SSL tests
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build the Docker test image for tox
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
file: tests/Dockerfile
|
||||
tags: rqtest-image:latest
|
||||
push: false
|
||||
- name: Launch tox SSL env only (will only run SSL specific tests)
|
||||
uses: addnab/docker-run-action@v3
|
||||
with:
|
||||
image: rqtest-image:latest
|
||||
run: stunnel & redis-server & RUN_SSL_TESTS=1 tox run -e ssl
|
||||
|
||||
test:
|
||||
name: Python${{ matrix.python-version }}/Redis${{ matrix.redis-version }}/redis-py${{ matrix.redis-py-version }}
|
||||
runs-on: ubuntu-20.04
|
||||
timeout-minutes: 10
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.7", "3.8.3", "3.9", "3.10", "3.11"]
|
||||
redis-version: [3, 4, 5, 6, 7]
|
||||
redis-py-version: [3.5.0]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4.6.1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Start Redis
|
||||
uses: supercharge/redis-github-action@1.5.0
|
||||
with:
|
||||
redis-version: ${{ matrix.redis-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install redis==${{ matrix.redis-py-version }}
|
||||
pip install -r requirements.txt -r dev-requirements.txt
|
||||
pip install -e .
|
||||
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
RUN_SLOW_TESTS_TOO=1 pytest --cov=rq --cov-config=.coveragerc --cov-report=xml --durations=5
|
||||
|
||||
- name: Upload coverage to Codecov
|
||||
uses: codecov/codecov-action@v3
|
||||
with:
|
||||
file: ./coverage.xml
|
||||
fail_ci_if_error: false
|
||||
test-python-36:
|
||||
name: Python${{ matrix.python-version }}/Redis${{ matrix.redis-version }}/redis-py${{ matrix.redis-py-version }}
|
||||
runs-on: ubuntu-20.04
|
||||
timeout-minutes: 10
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.6"]
|
||||
redis-version: [3, 4, 5, 6, 7]
|
||||
redis-py-version: [3.5.0]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4.6.1
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: Start Redis
|
||||
uses: supercharge/redis-github-action@1.5.0
|
||||
with:
|
||||
redis-version: ${{ matrix.redis-version }}
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install redis==${{ matrix.redis-py-version }}
|
||||
pip install -r requirements.txt -r dev-requirements-36.txt
|
||||
pip install -e .
|
||||
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
RUN_SLOW_TESTS_TOO=1 pytest --cov=rq --cov-config=.coveragerc --cov-report=xml --durations=5
|
||||
|
||||
- name: Upload coverage to Codecov
|
||||
uses: codecov/codecov-action@v3
|
||||
with:
|
||||
file: ./coverage.xml
|
||||
fail_ci_if_error: false
|
Loading…
Reference in New Issue