Skip to content

Commit 36099ee

Browse files
Merge pull request #26 from upstash/migrate_compatibility_checks
migrate tests and dependabot
2 parents 463445b + 6ccb8c6 commit 36099ee

File tree

2 files changed

+261
-0
lines changed

2 files changed

+261
-0
lines changed

.github/dependabot.yaml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
version: 2
2+
updates:
3+
4+
# Python packages
5+
- package-ecosystem: "pip"
6+
directory: "/examples/using-huey"
7+
schedule:
8+
interval: "daily"
9+
10+
- package-ecosystem: "pip"
11+
directory: "/examples/using-apscheduler"
12+
schedule:
13+
interval: "daily"
14+
15+
- package-ecosystem: "pip"
16+
directory: "/examples/using-celery"
17+
schedule:
18+
interval: "daily"
19+
20+
21+
# Ruby packages
22+
- package-ecosystem: "bundler"
23+
directory: "/examples/using-sidekiq"
24+
schedule:
25+
interval: "daily"
26+
27+
- package-ecosystem: "bundler"
28+
directory: "/examples/using-resque"
29+
schedule:
30+
interval: "daily"
31+
32+
33+
# Rust packages
34+
- package-ecosystem: "cargo"
35+
directory: "/examples/using_redis-rs"
36+
schedule:
37+
interval: "daily"
+224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
name: Compatibility Tests
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- 'compatible-libraries'
7+
8+
schedule:
9+
- cron: "0 12 * * *"
10+
# run everyday at 12.00
11+
12+
jobs:
13+
14+
sidekiq:
15+
runs-on: ubuntu-latest
16+
defaults:
17+
run:
18+
working-directory: ./examples/using-sidekiq
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v2
22+
- name: Set up Ruby and dependencies
23+
uses: ruby/setup-ruby@v1
24+
with:
25+
ruby-version: '3.1'
26+
- name: Install dependencies
27+
run: |
28+
gem install bundler
29+
bundle install
30+
shell: bash
31+
- name: run
32+
continue-on-error: true
33+
run: |
34+
timeout 50s bundle exec sidekiq -r ./sendEmail.rb 2>&1 | tee sampleLogs2.log | bash client.sh
35+
env:
36+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
37+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
38+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
39+
- name: Compare outputs
40+
if: always()
41+
id: 'compare'
42+
run: |
43+
sed -i '/^\(Emailed to:\)/!d' sampleLogs2.log
44+
diff <(sort sampleLogs.log) <(sort sampleLogs2.log)
45+
- name: Run script for Sidekiq
46+
env:
47+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
48+
if: always() && steps.compare.outcome != 'success'
49+
run: |
50+
curl -X POST -H 'Content-type: application/json' --data '{"text":"SIDEKIQ-COMPATIBILITY: Some tests have failed. Check the action: '$GITHUB_SERVER_URL'/'$GITHUB_REPOSITORY'/actions/runs/'$GITHUB_RUN_ID'"}' "$SLACK_WEBHOOK"
51+
shell: bash
52+
53+
54+
celery:
55+
runs-on: ubuntu-latest
56+
defaults:
57+
run:
58+
working-directory: ./examples/using-celery
59+
steps:
60+
- name: Checkout
61+
uses: actions/checkout@v2
62+
- name: Set up Python and dependencies
63+
uses: actions/setup-python@v4
64+
with:
65+
python-version: '3.8'
66+
- name: Install dependencies with latest versions
67+
run: pip install -r requirements.txt -U
68+
- name: Run servers and test
69+
id: 'testing'
70+
run: |
71+
flask --app server run > /dev/null 2>&1 &
72+
celery -A tasks worker --loglevel=INFO > /dev/null 2>&1 &
73+
timeout 45s python3 test.py
74+
shell: bash
75+
env:
76+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
77+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
78+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
79+
- name: Run script
80+
env:
81+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
82+
if: always() && steps.testing.outcome != 'success'
83+
run: |
84+
curl -X POST -H 'Content-type: application/json' --data '{"text":"CELERY-COMPATIBILITY: Some tests have failed. Check the action: '$GITHUB_SERVER_URL'/'$GITHUB_REPOSITORY'/actions/runs/'$GITHUB_RUN_ID'"}' "$SLACK_WEBHOOK"
85+
shell: bash
86+
87+
huey:
88+
runs-on: ubuntu-latest
89+
defaults:
90+
run:
91+
working-directory: ./examples/using-huey
92+
steps:
93+
- name: Checkout
94+
uses: actions/checkout@v2
95+
- name: Set up Python and dependencies
96+
uses: actions/setup-python@v4
97+
with:
98+
python-version: '3.8'
99+
- name: Install dependencies with latest versions
100+
run: pip install -r requirements.txt -U
101+
- name: Run Huey Worker
102+
run: |
103+
huey_consumer.py tasks.huey > /dev/null 2>&1 &
104+
shell: bash
105+
env:
106+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
107+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
108+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
109+
- name: Run Python script
110+
id: 'testing'
111+
run: |
112+
python3 test.py
113+
shell: bash
114+
env:
115+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
116+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
117+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
118+
119+
- name: Run script
120+
env:
121+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
122+
if: always() && steps.testing.outcome != 'success'
123+
run: |
124+
curl -X POST -H 'Content-type: application/json' --data '{"text":"HUEY-COMPATIBILITY: Some tests have failed. Check the action: '$GITHUB_SERVER_URL'/'$GITHUB_REPOSITORY'/actions/runs/'$GITHUB_RUN_ID'"}' "$SLACK_WEBHOOK"
125+
shell: bash
126+
127+
apscheduler:
128+
runs-on: ubuntu-latest
129+
defaults:
130+
run:
131+
working-directory: ./examples/using-apscheduler
132+
steps:
133+
- name: Checkout
134+
uses: actions/checkout@v2
135+
- name: Set up Python and dependencies
136+
uses: actions/setup-python@v4
137+
with:
138+
python-version: '3.8'
139+
- name: Install dependencies with latest versions
140+
run: pip install -r requirements.txt -U
141+
- name: Run compatibility test
142+
id: "testing"
143+
run: |
144+
python3 test.py
145+
env:
146+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
147+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
148+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
149+
- name: Run script
150+
env:
151+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
152+
if: always() && steps.testing.outcome != 'success'
153+
run: |
154+
curl -X POST -H 'Content-type: application/json' --data '{"text":"APSCHEDULER-COMPATIBILITY: Some tests have failed. Check the action: '$GITHUB_SERVER_URL'/'$GITHUB_REPOSITORY'/actions/runs/'$GITHUB_RUN_ID'"}' "$SLACK_WEBHOOK"
155+
shell: bash
156+
157+
resque:
158+
runs-on: ubuntu-latest
159+
defaults:
160+
run:
161+
working-directory: ./examples/using-resque
162+
steps:
163+
- name: Checkout
164+
uses: actions/checkout@v2
165+
- name: Set up Ruby and dependencies
166+
uses: ruby/setup-ruby@v1
167+
with:
168+
ruby-version: '3.1'
169+
- name: Install dependencies
170+
run: |
171+
gem install bundler
172+
bundle install
173+
shell: bash
174+
- name: Populate Queues
175+
continue-on-error: true
176+
run: |
177+
timeout 20s rake resque:work QUEUE=enterprise,free INTERVAL=0.5 2>&1 | tee sampleLogs2.log | ruby populate.rb
178+
env:
179+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
180+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
181+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
182+
- name: Start Workers
183+
id: 'compare'
184+
run: |
185+
sed -i '/^\(Enterprise process\|Free process\)/!d' sampleLogs2.log
186+
diff sampleLogs.log sampleLogs2.log
187+
env:
188+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
189+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
190+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
191+
- name: Run script for Resque
192+
env:
193+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
194+
if: always() && steps.compare.outcome != 'success'
195+
run: |
196+
curl -X POST -H 'Content-type: application/json' --data '{"text":"RESQUE-COMPATIBILITY: Some tests have failed. Check the action: '$GITHUB_SERVER_URL'/'$GITHUB_REPOSITORY'/actions/runs/'$GITHUB_RUN_ID'"}' "$SLACK_WEBHOOK"
197+
shell: bash
198+
199+
200+
redis-rs:
201+
runs-on: ubuntu-latest
202+
defaults:
203+
run:
204+
working-directory: ./examples/using_redis-rs
205+
steps:
206+
- name: Checkout
207+
uses: actions/checkout@v2
208+
- name: Cargo run
209+
id: 'testing'
210+
run: |
211+
cargo run
212+
env:
213+
UPSTASH_REDIS_HOST: ${{ secrets.UPSTASH_REDIS_HOST }}
214+
UPSTASH_REDIS_PASSWORD: ${{ secrets.UPSTASH_REDIS_PASSWORD }}
215+
UPSTASH_REDIS_PORT: ${{ secrets.UPSTASH_REDIS_PORT }}
216+
- name: Run script
217+
env:
218+
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
219+
if: always() && steps.testing.outcome != 'success'
220+
run: |
221+
curl -X POST -H 'Content-type: application/json' --data '{"text":"RUST-REDIS-COMPATIBILITY: Some tests have failed. Check the action: '$GITHUB_SERVER_URL'/'$GITHUB_REPOSITORY'/actions/runs/'$GITHUB_RUN_ID'"}' "$SLACK_WEBHOOK"
222+
shell: bash
223+
224+

0 commit comments

Comments
 (0)