Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 1e79c80

Browse files
committed
Remove travis directory
This reflects that we no longer uses travis. Scripts are moved to ci folder.
1 parent 597a508 commit 1e79c80

File tree

18 files changed

+15
-42
lines changed

18 files changed

+15
-42
lines changed

.cirrus.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ format_and_dart_test_task:
4343
cp $CIRRUS_WORKING_DIR -r ./flutter
4444
gclient sync
4545
46-
format_script: cd $ENGINE_PATH/src/flutter && ./travis/format.sh
47-
build_script: cd $ENGINE_PATH/src/flutter && ./travis/build.sh
48-
test_script: cd $ENGINE_PATH/src/flutter && ./travis/test.sh
46+
format_script: cd $ENGINE_PATH/src/flutter && ./ci/format.sh
47+
build_script: cd $ENGINE_PATH/src/flutter && ./ci/build.sh
48+
test_script: cd $ENGINE_PATH/src/flutter && ./ci/test.sh

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Contributing to the Flutter engine
22
==================================
33

4-
[![Build Status](https://travis-ci.org/flutter/engine.svg)](https://travis-ci.org/flutter/engine)
4+
[![Build Status](https://cirrus-ci.com/flutter/engine.svg)](https://cirrus-ci.com/flutter/engine)
55

66
_See also: [Flutter's code of conduct](https://flutter.io/design-principles/#code-of-conduct)_
77

File renamed without changes.

travis/build.sh renamed to ci/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ cd ..
77

88
flutter/tools/gn --unoptimized
99
ninja -C out/host_debug_unopt generate_dart_ui
10-
flutter/travis/analyze.sh
11-
flutter/travis/licenses.sh
10+
flutter/ci/analyze.sh
11+
flutter/ci/licenses.sh
File renamed without changes.
File renamed without changes.

travis/licenses.sh renamed to ci/licenses.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ set -e
33
shopt -s nullglob
44

55
echo "Verifying license script is still happy..."
6-
(cd flutter/tools/licenses; pub get; dart --checked lib/main.dart --src ../../.. --out ../../../out/license_script_output --golden ../../travis/licenses_golden)
6+
(cd flutter/tools/licenses; pub get; dart --checked lib/main.dart --src ../../.. --out ../../../out/license_script_output --golden ../../ci/licenses_golden)
77

88
for f in out/license_script_output/licenses_*; do
9-
if ! cmp -s flutter/travis/licenses_golden/$(basename $f) $f
9+
if ! cmp -s flutter/ci/licenses_golden/$(basename $f) $f
1010
then
1111
echo "License script got different results than expected for $f."
1212
echo "Please rerun the licenses script locally to verify that it is"
@@ -16,7 +16,7 @@ for f in out/license_script_output/licenses_*; do
1616
echo "For more information, see the script in:"
1717
echo " https://github.com/flutter/engine/tree/master/tools/licenses"
1818
echo ""
19-
diff -U 6 flutter/travis/licenses_golden/$(basename $f) $f
19+
diff -U 6 flutter/ci/licenses_golden/$(basename $f) $f
2020
exit 1
2121
fi
2222
done

travis/licenses_golden/licenses_flutter renamed to ci/licenses_golden/licenses_flutter

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,10 +187,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
187187
LIBRARY: engine
188188
ORIGIN: ../../../LICENSE
189189
TYPE: LicenseType.bsd
190-
FILE: ../../../flutter/.cirrus.yml
191190
FILE: ../../../flutter/DEPS
192-
FILE: ../../../flutter/ci/docker/build/Dockerfile
193-
FILE: ../../../flutter/ci/docker/build/engine_gclient
194191
FILE: ../../../flutter/lib/io/dart_io.cc
195192
FILE: ../../../flutter/lib/io/dart_io.h
196193
FILE: ../../../flutter/lib/snapshot/libraries.json
File renamed without changes.

0 commit comments

Comments
 (0)