cleanup #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD Pipeline | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main ] | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
services: | |
redis: | |
image: redis:8.2-m01 | |
ports: | |
- 6379:6379 | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install pytest flake8 | |
- name: Lint with flake8 | |
run: | | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test Redis connection | |
run: | | |
python main.py test-connection --host localhost --port 6379 | |
- name: Run short integration test | |
run: | | |
python main.py run --workload-profile basic_rw --duration 10 --host localhost --quiet | |
build: | |
needs: test | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
matrix: | |
workload: [basic-rw, high-throughput, list-ops, async-mixed] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}/redis-test-${{ matrix.workload }} | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=sha,prefix={{branch}}- | |
type=raw,value=latest,enable={{is_default_branch}} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
deploy-dev: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/develop' | |
environment: development | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Deploy to Development | |
run: | | |
echo "🚀 Deploying to development environment..." | |
# Add your deployment commands here | |
# Examples: | |
# - kubectl apply -f k8s/dev/ | |
# - helm upgrade --install redis-test-dev ./helm-chart | |
# - docker-compose -f docker-compose.prod.yml up -d | |
deploy-prod: | |
needs: build | |
runs-on: ubuntu-latest | |
if: github.ref == 'refs/heads/main' | |
environment: production | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Deploy to Production | |
run: | | |
echo "🚀 Deploying to production environment..." | |
# Add your production deployment commands here |