bitbucket-pipelines.yml
changeset 1796 4f7a0c40a7c3
parent 1787 32115bf79d87
child 1810 70768bd1dab3
equal deleted inserted replaced
1795:e27d253bd0ba 1796:4f7a0c40a7c3
     1 image: python:2.7
     1 image: skvorl/beremiz-requirements
     2 
     2 
     3 pipelines:
     3 pipelines:
     4   custom: # Pipelines that are triggered manually
     4   custom: # Pipelines that are triggered manually
     5     checks: # The name that is displayed in the list in the Bitbucket Cloud GUI
     5     checks: # The name that is displayed in the list in the Bitbucket Cloud GUI
     6         - step:
     6         - step:
     7             caches:
       
     8                 - pip
       
     9             script: # Modify the commands below to build your repository.
     7             script: # Modify the commands below to build your repository.
    10               - pip install pycodestyle
       
    11               - python --version
     8               - python --version
    12               - ./tests/tools/check_source.sh
     9               - ./tests/tools/check_source.sh
    13 
    10               - /usr/bin/python ./tests/tools/test_application.py
    14 
    11 
    15   default:
    12   default:
    16     - step:
    13     - step:
    17         caches:
       
    18           - pip
       
    19         script: # Modify the commands below to build your repository.
    14         script: # Modify the commands below to build your repository.
    20           - pip install pycodestyle
       
    21           - python --version
    15           - python --version
    22           - ./tests/tools/check_source.sh
    16           - ./tests/tools/check_source.sh
       
    17           - /usr/bin/python ./tests/tools/test_application.py