Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[HOTFIX] Update version in release #355

Merged
merged 1 commit into from
Sep 24, 2024

Update version in release

4a12f96
Select commit
Loading
Failed to load commit list.
Merged

[HOTFIX] Update version in release #355

Update version in release
4a12f96
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Sep 24, 2024 in 14m 27s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #355 [HOTFIX] Update version in release.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build has five jobs, running in three sequential stages.

Stage 1: test

This stage passed.

Job Python ENV OS State
1025.1 3.8 DOCKER_COMPOSE_VERSION=1.27.3 Linux passed
1025.2 3.9 DOCKER_COMPOSE_VERSION=1.27.3 Linux passed
1025.3 3.10 DOCKER_COMPOSE_VERSION=1.27.3 Linux passed

Stage 2: Deploy to PyPI

This stage passed.

Job Python ENV OS State
1025.4 3.8 DOCKER_COMPOSE_VERSION=1.27.3 Linux passed

Stage 3: Deploy to DockerHub

This stage passed.

Job Python ENV OS State
1025.5 3.8 DOCKER_COMPOSE_VERSION=1.27.3 Linux passed

Build Configuration

Build Option Setting
Language Python
Operating System Linux (Bionic)
Python Versions 3.8, 3.9, 3.10
Build Configuration
{
  "language": "python",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "services": [
    "docker"
  ],
  "python": [
    "3.8",
    "3.9",
    "3.10"
  ],
  "env": [
    "jobs={:DOCKER_COMPOSE_VERSION=>\"1.27.3\"}"
  ],
  "before_install": [
    "sudo rm /usr/local/bin/docker-compose",
    "curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose",
    "chmod +x docker-compose",
    "sudo mv docker-compose /usr/local/bin"
  ],
  "install": [
    "pip install -r requirements.txt"
  ],
  "script": [
    "python -m unittest discover tests",
    "cd tests/e2e",
    "bash test.sh"
  ],
  "before_deploy": [
    "python3 -m pip install --upgrade setuptools"
  ],
  "jobs": {
    "include": [
      {
        "stage": "Deploy to PyPI",
        "script": [
          "skip"
        ],
        "deploy": [
          {
            "provider": "pypi",
            "username": "idealista",
            "password": {
              "secure": "vGEjnrN5N3KlYHA/3LC+uJpW2lr1sZCUahNz0OjycNg/oKB1CZuQx0TuiXF/i8DnqnYpfW+tpFEjSwa2TqJIKhrQFf9yLUblr/Ky9H8VXzyLWI+DN3t3EbCg9QWRGuC7RJm57PZkjfMR6RewHNqpjAlzkRE4kLP7CItJYJNOapXDpUIGccPucubprPs0AGL0roNG8fhs9goyeHD05es6OCS1v1LO9j91mDMno+XH2yNwSFmVHRFbzdZP+jHqx8L4dI+mlOIK2iATW1JTCyGWRHBqfb8w7Pi97r4qWpl76OduFH8b6Ldg5adIFgXFzyTUpZUNmenFLji9FwxXUWTQHCtRWzSx6SfN1ebaaqyCA84+p12pEXXee2xLhw04pWLrHHk22FnleEcL+Us80s50+lWCZz0MiakyTCVE+0YJuW/CT25RNGZvOvtrqyZCXFi2OO2Nu8NIbCKjvehNKpXCFdJLBBJcUAOmNz667ELEs8OTzFqxzJwykkxW+zwvxNc3/T5P1v1q8lUbxml3qSKfzvmyirXH1v0D/GMXuQdDqw3oBdjJb304bSsiWJ0l1YCYRkl7fV9bnO0WboEqJG6HJGX3Pt1GgQIrIu/DnBZOnUiSFwaqH4nh1pyYzEHqTAxPsmIaVtYkTgJOkoZXZLtLv0CefB5jo3SmLF1g3qGDRCc="
            },
            "on": {
              "tags": true
            },
            "skip_existing": true
          }
        ]
      },
      {
        "stage": "Deploy to DockerHub",
        "before_deploy": [
          "cd ../..",
          "docker login -u \"$DOCKER_USERNAME\" -p \"$DOCKER_PASSWORD\"",
          "docker build -t prom2teams .",
          "docker tag prom2teams $DOCKER_USERNAME/prom2teams:latest",
          "docker tag prom2teams $DOCKER_USERNAME/prom2teams:$TRAVIS_TAG"
        ],
        "deploy": [
          {
            "provider": "script",
            "script": "docker push $DOCKER_USERNAME/prom2teams:$TRAVIS_TAG && docker push $DOCKER_USERNAME/prom2teams:latest",
            "on": {
              "tags": true
            }
          }
        ]
      }
    ]
  }
}