bitbucket-pipelines.yml
changeset 2295 dda34e671700
parent 1880 e5ddbaf756cb
equal deleted inserted replaced
2294:da288f63612f 2295:dda34e671700
     1 image: skvorl/beremiz-requirements
     1 image: skvorl/beremiz-requirements
     2 
     2 
     3 pipelines:
     3 pipelines:
     4   custom: # Pipelines that are triggered manually
     4   default:
     5     checks: # The name that is displayed in the list in the Bitbucket Cloud GUI
     5     - parallel:
     6         - step:
     6         - step:
     7             script: # Modify the commands below to build your repository.
     7             name: Codestyle checks
       
     8             script:
     8               - ln -s /CanFestival-3 $BITBUCKET_CLONE_DIR/../CanFestival-3
     9               - ln -s /CanFestival-3 $BITBUCKET_CLONE_DIR/../CanFestival-3
     9               - /usr/bin/python --version
    10               - /usr/bin/python --version
    10               - ./tests/tools/check_source.sh
    11               - ./tests/tools/check_source.sh
       
    12         - step:
       
    13             name: Application tests
       
    14             max-time: 10
       
    15             script:
       
    16               - ln -s /CanFestival-3 $BITBUCKET_CLONE_DIR/../CanFestival-3
    11               - ./tests/tools/run_python_tests.sh
    17               - ./tests/tools/run_python_tests.sh
    12 
    18     
    13 
       
    14   default:
       
    15     - step:
       
    16         script: # Modify the commands below to build your repository.
       
    17           - ln -s /CanFestival-3 $BITBUCKET_CLONE_DIR/../CanFestival-3
       
    18           - /usr/bin/python --version
       
    19           - ./tests/tools/check_source.sh
       
    20           - ./tests/tools/run_python_tests.sh