From 093d30121d7785382fdde3e90cb9eb8bec3c7783 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 26 Apr 2019 12:21:21 +0100 Subject: [PATCH 1/2] Try running packager with buildkite --- .buildkite/pipeline.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 8b658be0..5f64eb0a 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -31,3 +31,16 @@ steps: - docker#v3.0.1: image: "node:10" propagate-environment: true + + - label: ":hammer: package" + command: + - "echo '--- Fetching Dependencies'" + - "./scripts/fetch-develop.deps.sh --depth 1" + - "yarn install" + - "echo '+++ Packaging'" + - "./scripts/ci_package.sh" + #branches: "travis/test-build" + artifact_paths: "dist/riot-*.tar.gz" + plugins: + - docker#v3.0.1: + image: "node:10" From bf84c64ea964ba755164d226af9bca56d8bd4ce5 Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 26 Apr 2019 14:38:36 +0100 Subject: [PATCH 2/2] Only bother packaging the develop branch --- .buildkite/pipeline.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yaml b/.buildkite/pipeline.yaml index 5f64eb0a..03123aca 100644 --- a/.buildkite/pipeline.yaml +++ b/.buildkite/pipeline.yaml @@ -39,7 +39,7 @@ steps: - "yarn install" - "echo '+++ Packaging'" - "./scripts/ci_package.sh" - #branches: "travis/test-build" + branches: "develop" artifact_paths: "dist/riot-*.tar.gz" plugins: - docker#v3.0.1: