Entornos de desarrollo

1º DAM/DAW - Curso 2024-2025

User Tools

Site Tools


apuntes:cicd

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
apuntes:cicd [2024/10/13 11:41] – created Santiago Faciapuntes:cicd [2025/03/25 00:33] (current) – [Publicar una imagen docker en Docker Hub] Santiago Faci
Line 1: Line 1:
 ====== Integración y despliegue continuo de una aplicación ====== ====== Integración y despliegue continuo de una aplicación ======
 +
 +<figure>
 +{{ github_actions_logo.png?200 }}
 +</figure>
 +
 +===== Testing ======
 +
 +Workflow: **Node.js**
 +
 +<code yaml>
 +name: Unit and integration tests
 +
 +on:
 +  push:
 +    branches: [ "main" ]
 +  pull_request:
 +    branches: [ "main" ]
 +
 +jobs:
 +  build:
 +
 +    runs-on: ubuntu-20.04
 +
 +    strategy:
 +      matrix:
 +        node-version: [18.x, 20.x, 22.x]
 +
 +    steps:
 +    - uses: actions/checkout@v4
 +    - name: Use Node.js ${{ matrix.node-version }}
 +      uses: actions/setup-node@v4
 +      with:
 +        node-version: ${{ matrix.node-version }}
 +        cache: 'npm'
 +    - run: npm install
 +    - run: docker compose -f docker-compose.dev.yaml up -d
 +    - run: sleep 3
 +    - run: npm run unit-test
 +    - run: npm run integration-test
 +</code>
 +
 +===== Crear una imagen docker ======
 +
 +Workflow: **Docker Image**
 +
 +<code yaml>
 +name: Docker Image CI
 +
 +on:
 +  push:
 +    branches: [ "main" ]
 +  pull_request:
 +    branches: [ "main" ]
 +
 +jobs:
 +
 +  build:
 +
 +    runs-on: ubuntu-latest
 +
 +    steps:
 +    - uses: actions/checkout@v4
 +    - name: Build the Docker image
 +      run: docker build . --file Dockerfile --tag cities:$(date +%s)
 +</code>
 +
 +===== Publicar una imagen docker en Docker Hub ======
 +
 +Workflow: **Docker Image**
 +
 +<code yaml>
 +</code>
 +
 +===== Lanzar un análisis de código con Sonarqube ======
 +
 +Workflow: **SonarQube**
 +
 +<code yaml>
 +name: Sonarqube
 +on:
 +  push:
 +    branches:
 +      - main
 +  pull_request:
 +    types: [opened, synchronize, reopened]
 +jobs:
 +  sonarqube:
 +    name: SonarQube
 +    runs-on: ubuntu-latest
 +    steps:
 +      - uses: actions/checkout@v4
 +        with:
 +          fetch-depth: 0  # Shallow clones should be disabled for a better relevancy of analysis
 +      - name: SonarQube Scan
 +        uses: SonarSource/sonarqube-scan-action@v5
 +        env:
 +          SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
 +</code>
  
 ---- ----
apuntes/cicd.1728819703.txt.gz · Last modified: 2024/10/13 11:41 by Santiago Faci