From 2c4c400f8bfa23257aa8789b7b7967dd31f60508 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:14:59 +0000 Subject: [PATCH 1/8] Update .gitlab-ci.yml --- .gitlab-ci.yml | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ece1402..4862abe1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,33 @@ image: cirrusci/flutter stages: -- coverage + - coverage + - docs variables: LC_ALL: "en_US.UTF-8" LANG: "en_US.UTF-8" coverage: + image: cirrusci/flutter stage: coverage coverage: '/^\s+lines.+: (\d+.\d*%)/' dependencies: [] script: - - sudo apt-get update -qq && sudo apt-get install -qq apt-transport-https curl gnupg lcov git - - ./scripts/test.sh - - ./scripts/coverage.sh - - flutter pub pub publish --dry-run \ No newline at end of file + - sudo apt-get update -qq && sudo apt-get install -qq apt-transport-https curl gnupg lcov git + - ./scripts/test.sh + - ./scripts/coverage.sh + - flutter pub pub publish --dry-run + +docs: + stage: docs + scripts: + - image: cirrusci/flutter + script: + - dartdoc + - image: ruby:2.3 + script: + - cd docs/api/ && bundle exec jekyll build -d test + - cd docs/api/ && bundle exec jekyll build -d public + only: + - master \ No newline at end of file From ead03c192131d12cd26ddf6b07653e096692d336 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:16:48 +0000 Subject: [PATCH 2/8] Update .gitlab-ci.yml --- .gitlab-ci.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4862abe1..49ff62e3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,3 @@ -image: cirrusci/flutter - stages: - coverage - docs @@ -28,6 +26,4 @@ docs: - image: ruby:2.3 script: - cd docs/api/ && bundle exec jekyll build -d test - - cd docs/api/ && bundle exec jekyll build -d public - only: - - master \ No newline at end of file + - cd docs/api/ && bundle exec jekyll build -d public \ No newline at end of file From 2596ae582fa8f713248d5187b8b6a3ab2c9300d8 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:19:49 +0000 Subject: [PATCH 3/8] Update .gitlab-ci.yml --- .gitlab-ci.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 49ff62e3..9aa81954 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,13 +17,15 @@ coverage: - ./scripts/coverage.sh - flutter pub pub publish --dry-run -docs: +docs:1: stage: docs - scripts: - - image: cirrusci/flutter - script: - - dartdoc - - image: ruby:2.3 - script: - - cd docs/api/ && bundle exec jekyll build -d test - - cd docs/api/ && bundle exec jekyll build -d public \ No newline at end of file + image: cirrusci/flutter + script: + - dartdoc + +docs:2: + stage: docs + image: ruby:2.3 + script: + - cd docs/api/ && bundle exec jekyll build -d test + - cd docs/api/ && bundle exec jekyll build -d public \ No newline at end of file From b36a612b432b419931cd11aa8fe04d09ec720c14 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:27:00 +0000 Subject: [PATCH 4/8] Update .gitlab-ci.yml --- .gitlab-ci.yml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9aa81954..d9c23df6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,6 +1,7 @@ stages: - coverage - - docs + - builddocs + - publishdocs variables: LC_ALL: "en_US.UTF-8" @@ -17,15 +18,20 @@ coverage: - ./scripts/coverage.sh - flutter pub pub publish --dry-run -docs:1: - stage: docs +builddocs: + stage: builddocs image: cirrusci/flutter script: - dartdoc + artifacts: + paths: + - doc/api/ -docs:2: +publishdocs: stage: docs image: ruby:2.3 script: - cd docs/api/ && bundle exec jekyll build -d test - - cd docs/api/ && bundle exec jekyll build -d public \ No newline at end of file + - cd docs/api/ && bundle exec jekyll build -d public + dependencies: + - builddocs \ No newline at end of file From f4f72e64bc5ed7a09c1805cc5f60c434b05a6d5c Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:27:21 +0000 Subject: [PATCH 5/8] Update .gitlab-ci.yml --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9c23df6..bc78fc82 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ builddocs: - dartdoc artifacts: paths: - - doc/api/ + - doc/api/ publishdocs: stage: docs @@ -34,4 +34,4 @@ publishdocs: - cd docs/api/ && bundle exec jekyll build -d test - cd docs/api/ && bundle exec jekyll build -d public dependencies: - - builddocs \ No newline at end of file + - builddocs \ No newline at end of file From dd4ef530dccf8b92b431a615281d081f23ed1ab1 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:28:19 +0000 Subject: [PATCH 6/8] Update .gitlab-ci.yml From aa6b4453c4578dfef05f3c3944be11f3c79ee65d Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:28:39 +0000 Subject: [PATCH 7/8] Update .gitlab-ci.yml --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc78fc82..6bc2f412 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,7 +28,7 @@ builddocs: - doc/api/ publishdocs: - stage: docs + stage: publishdocs image: ruby:2.3 script: - cd docs/api/ && bundle exec jekyll build -d test From a305fee9d882173071acc02c83846cec32fc3d04 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 9 Jun 2019 12:29:18 +0000 Subject: [PATCH 8/8] Update .gitlab-ci.yml --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6bc2f412..9c8f26f3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -31,7 +31,7 @@ publishdocs: stage: publishdocs image: ruby:2.3 script: - - cd docs/api/ && bundle exec jekyll build -d test - - cd docs/api/ && bundle exec jekyll build -d public + - bundle exec jekyll build -d test + - bundle exec jekyll build -d public dependencies: - builddocs \ No newline at end of file