From f99206e851f63b8b9f64c040891905b83e7d247a Mon Sep 17 00:00:00 2001 From: nturgut Date: Fri, 2 Oct 2020 10:37:26 -0700 Subject: [PATCH 1/4] remove the web integration test --- .cirrus.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.cirrus.yml b/.cirrus.yml index d30aa975a1063..1656ec3c63444 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -65,10 +65,6 @@ task: mkdir -p $FRAMEWORK_PATH cd $FRAMEWORK_PATH git clone https://github.com/flutter/flutter.git - test_web_script: | - cd $FRAMEWORK_PATH/flutter/dev/integration_tests/web - ../../../bin/flutter config --local-engine=host_debug_unopt --no-analytics --enable-web - ../../../bin/flutter --local-engine=host_debug_unopt build web -v analyze_framework_script: | cd $FRAMEWORK_PATH/flutter rm -rf bin/cache/pkg/sky_engine @@ -78,8 +74,3 @@ task: test_framework_script: | cd $FRAMEWORK_PATH/flutter/packages/flutter ../../bin/flutter test --local-engine=host_debug_unopt - - - name: build_test - build_script: | - cd $ENGINE_PATH/src/flutter - ./ci/build.sh From 9999330140242d870165855fc078caf226a6f9f6 Mon Sep 17 00:00:00 2001 From: nturgut Date: Fri, 2 Oct 2020 12:55:12 -0700 Subject: [PATCH 2/4] add -rf and copy even if the directory does not exists --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 1656ec3c63444..6832f76aff4ec 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -68,7 +68,7 @@ task: analyze_framework_script: | cd $FRAMEWORK_PATH/flutter rm -rf bin/cache/pkg/sky_engine - cp -r $ENGINE_PATH/src/out/host_debug_unopt/gen/dart-pkg/sky_engine bin/cache/pkg/ + cp -rf $ENGINE_PATH/src/out/host_debug_unopt/gen/dart-pkg/sky_engine bin/cache/pkg/ bin/flutter update-packages --local-engine=host_debug_unopt bin/flutter analyze --dartdocs --flutter-repo --local-engine=host_debug_unopt test_framework_script: | From 02d8173b1a023c60f632670b1610ac3f6bcccd34 Mon Sep 17 00:00:00 2001 From: nturgut Date: Fri, 2 Oct 2020 13:31:31 -0700 Subject: [PATCH 3/4] try creating the directory --- .cirrus.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 6832f76aff4ec..805a6bb721fb1 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -68,7 +68,8 @@ task: analyze_framework_script: | cd $FRAMEWORK_PATH/flutter rm -rf bin/cache/pkg/sky_engine - cp -rf $ENGINE_PATH/src/out/host_debug_unopt/gen/dart-pkg/sky_engine bin/cache/pkg/ + mkdir bin/cache/pkg/ + cp -r $ENGINE_PATH/src/out/host_debug_unopt/gen/dart-pkg/sky_engine bin/cache/pkg/ bin/flutter update-packages --local-engine=host_debug_unopt bin/flutter analyze --dartdocs --flutter-repo --local-engine=host_debug_unopt test_framework_script: | From 592310a8409b99a2244e60b7b8212a95757f725f Mon Sep 17 00:00:00 2001 From: nturgut Date: Fri, 2 Oct 2020 14:26:17 -0700 Subject: [PATCH 4/4] Update .cirrus.yml still getting error creating the directory. use -p option --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 805a6bb721fb1..0669c3142b443 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -68,7 +68,7 @@ task: analyze_framework_script: | cd $FRAMEWORK_PATH/flutter rm -rf bin/cache/pkg/sky_engine - mkdir bin/cache/pkg/ + mkdir -p bin/cache/pkg/ cp -r $ENGINE_PATH/src/out/host_debug_unopt/gen/dart-pkg/sky_engine bin/cache/pkg/ bin/flutter update-packages --local-engine=host_debug_unopt bin/flutter analyze --dartdocs --flutter-repo --local-engine=host_debug_unopt