diff options
Diffstat (limited to 'protocols/Telegram/tdlib/td/bitbucket-pipelines.yml')
-rw-r--r-- | protocols/Telegram/tdlib/td/bitbucket-pipelines.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/protocols/Telegram/tdlib/td/bitbucket-pipelines.yml b/protocols/Telegram/tdlib/td/bitbucket-pipelines.yml new file mode 100644 index 0000000000..4dbdf6c914 --- /dev/null +++ b/protocols/Telegram/tdlib/td/bitbucket-pipelines.yml @@ -0,0 +1,16 @@ +image: gcc:5.4 + +pipelines: + default: + - step: + script: + - apt-get update + - apt-get install -y cmake + - apt-get install -y gperf + - g++ --version + - cmake --version + - mkdir build + - cd build + - cmake .. + - make -k run_all_tests + - ./test/run_all_tests |