Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abbastoof authored Jun 12, 2024
1 parent 47a4bd9 commit 04906dc
Showing 1 changed file with 15 additions and 43 deletions.
58 changes: 15 additions & 43 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ jobs:
with:
python-version: 3.11 # Use Python version 3.11

# Cache dependencies
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
# Install build dependencies
- name: Install build dependencies
run: |
Expand All @@ -39,20 +48,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11

# Install build dependencies
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==58.0.4 wheel
- name: Install dependencies
run: pip install -r requirements.txt

# Run test suite
- name: Run tests
run: pytest # Execute tests using pytest
Expand All @@ -64,20 +59,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11

# Install build dependencies
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==58.0.4 wheel
- name: Install dependencies
run: pip install -r requirements.txt

# Run security checks
- name: Run security checks
run: |
Expand All @@ -91,20 +72,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: 3.11

# Install build dependencies
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools==58.0.4 wheel
- name: Install dependencies
run: pip install -r requirements.txt

# Build the Docker image
- name: Build Docker image
run: docker build -t transcendence .
Expand All @@ -126,6 +93,11 @@ jobs:
docker tag transcendence ${DOCKER_HUB_USERNAME}/transcendence:latest
docker push ${DOCKER_HUB_USERNAME}/transcendence:latest
# Deploy to the server
# Conditional deployment based on branch
- name: Deploy to server
if: github.ref == 'refs/heads/main'
run: ssh user@server "docker pull ${DOCKER_HUB_USERNAME}/transcendence:latest && docker-compose up --build -d"

- name: Deploy to development server
if: github.ref == 'refs/heads/develop'
run: ssh user@dev-server "docker pull ${DOCKER_HUB_USERNAME}/transcendence:latest && docker-compose up --build -d"

0 comments on commit 04906dc

Please sign in to comment.