Skip to content

Commit

Permalink
fork and modify to run with valkey
Browse files Browse the repository at this point in the history
  • Loading branch information
roshkhatri committed Apr 3, 2024
1 parent b77450d commit c18e477
Show file tree
Hide file tree
Showing 22 changed files with 158 additions and 1,325 deletions.
31 changes: 30 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Prepare Environment
run: ${{ matrix.runs.prepare }}
- name: Pull Dependencies
Expand All @@ -46,3 +46,32 @@ jobs:
run: ${{ matrix.runs.test }}
- name: '"docker images"'
run: ${{ matrix.runs.images }}

build_and_push:
needs:
- generate-jobs
- test
strategy: ${{ fromJson(needs.generate-jobs.outputs.strategy) }}
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: docker.io
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
file: ./${{ matrix.meta.entries[0].directory }}/Dockerfile
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/valkey:${{ matrix.name }}
143 changes: 0 additions & 143 deletions 6.0/alpine/Dockerfile

This file was deleted.

152 changes: 0 additions & 152 deletions 6.0/debian/Dockerfile

This file was deleted.

24 changes: 0 additions & 24 deletions 6.0/debian/docker-entrypoint.sh

This file was deleted.

Loading

0 comments on commit c18e477

Please sign in to comment.