Skip to content

Commit

Permalink
update the github action to use redis not memcached
Browse files Browse the repository at this point in the history
  • Loading branch information
syphax-bouazzouni committed Oct 9, 2024
1 parent 8b858f2 commit c62fc67
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests-real-data-stageportal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- "3306:3306"
env:
MYSQL_ROOT_PASSWORD: root
memcached:
image: memcached:1.6
redis:
image: redis:latest
ports:
- 11211:11211
- 6379:6379
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests-real-data-testportal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- "3306:3306"
env:
MYSQL_ROOT_PASSWORD: root
memcached:
image: memcached:1.6
redis:
image: redis:latest
ports:
- 11211:11211
- 6379:6379
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
- "3306:3306"
env:
MYSQL_ROOT_PASSWORD: root
memcached:
image: memcached:1.6
redis:
image: redis:latest
ports:
- 11211:11211
- 6379:6379
chrome-server:
image: selenium/standalone-chrome:112.0-chromedriver-112.0-grid-4.9.0-20230421
options: "--shm-size=2g"
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,11 @@ jobs:
- "3306:3306"
env:
MYSQL_ROOT_PASSWORD: root
memcached:
image: memcached:1.6
redis:
image: redis:latest
ports:
- 11211:11211
- 6379:6379

steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down

0 comments on commit c62fc67

Please sign in to comment.