bitbucket-pipelines.yml
changeset 1880 e5ddbaf756cb
parent 1820 76f5eba31afd
child 2295 dda34e671700
equal deleted inserted replaced
1879:4d81c3bcac82 1880:e5ddbaf756cb
     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             script: # Modify the commands below to build your repository.
     7             script: # Modify the commands below to build your repository.
       
     8               - ln -s /CanFestival-3 $BITBUCKET_CLONE_DIR/../CanFestival-3
     8               - /usr/bin/python --version
     9               - /usr/bin/python --version
     9               - ./tests/tools/check_source.sh
    10               - ./tests/tools/check_source.sh
    10               - ./tests/tools/run_python_tests.sh
    11               - ./tests/tools/run_python_tests.sh
    11 
    12 
    12 
    13 
    13   default:
    14   default:
    14     - step:
    15     - step:
    15         script: # Modify the commands below to build your repository.
    16         script: # Modify the commands below to build your repository.
       
    17           - ln -s /CanFestival-3 $BITBUCKET_CLONE_DIR/../CanFestival-3
    16           - /usr/bin/python --version
    18           - /usr/bin/python --version
    17           - ./tests/tools/check_source.sh 
    19           - ./tests/tools/check_source.sh
    18           - ./tests/tools/run_python_tests.sh         
    20           - ./tests/tools/run_python_tests.sh
    19