From f89f7882da288c39cf1e1113eed76ec113b01df5 Mon Sep 17 00:00:00 2001 From: moepoi Date: Sun, 15 Aug 2021 21:31:16 +0700 Subject: [PATCH] Fix CI --- .gitlab-ci.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0936cb2..3801e70 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,13 +4,15 @@ before_script: - flutter pub get stages: - - analyze-and-test + - build + - analyze -analyze-and-test: - stage: analyze-and-test +build: + stage: build script: - - flutter build aot - - flutter analyze - - flutter test - only: - - merge_requests \ No newline at end of file + - flutter build apk + +analyze: + stage: analyze + script: + - flutter analyze \ No newline at end of file