From e9dc3897fa72d25794c42279b7863064dff95fdd Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Mon, 23 Aug 2021 16:06:22 -0700 Subject: [PATCH] rm bitbucket-pipelines.yml Part of ignition-tooling/release-tools#203 Signed-off-by: Steve Peters --- bitbucket-pipelines.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 bitbucket-pipelines.yml diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 7189dcbf..00000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,19 +0,0 @@ -# This is a sample build configuration for C++. -# Check our guides at https://confluence.atlassian.com/x/VYk8Lw for more examples. -# Only use spaces to indent your .yml configuration. -# ----- -# You can specify a custom docker image from Docker Hub as your build environment. -image: ubuntu:xenial - -pipelines: - default: - - step: - script: # Modify the commands below to build your repository. - - apt-get update - - apt-get -y install cmake build-essential lcov - - mkdir build - - cd build - - cmake .. - - make - - make test - - make install