From 1b4f93b88ce80fee497c650b7c0ecd4e82c14594 Mon Sep 17 00:00:00 2001 From: Arve Knudsen Date: Thu, 19 Mar 2020 19:06:28 +0100 Subject: [PATCH] CircleCI: Pin grabpl to 0.1.0 (#22904) --- .circleci/config.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0729721bddb..e85c3fe26e1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -45,17 +45,13 @@ jobs: description: Install the Grafana Build Pipeline tool executor: grafana-build steps: - - run: - name: Clone repo - command: | - mkdir -p ~/.ssh - echo 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==' >> ~/.ssh/known_hosts - git clone git@github.com:grafana/build-pipeline.git - run: name: Install Grafana Build Pipeline command: | - cd build-pipeline - go build -o ../bin/grabpl ./cmd/grabpl + curl -fLO https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v0.1.0/grabpl + chmod +x grabpl + mkdir bin + mv grabpl bin/ - persist_to_workspace: root: . paths: