forked from flutter/codelabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflutter_ci_script_beta.sh
executable file
·47 lines (41 loc) · 1.17 KB
/
flutter_ci_script_beta.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env bash
set -e -o pipefail
DIR="${BASH_SOURCE%/*}"
source "$DIR/flutter_ci_script_shared.sh"
declare -a CODELABS=(
"adaptive_app"
"animated-responsive-layout"
"boring_to_beautiful"
"cookbook"
# TODO(DomesticMouse): Use 'const' with the constructor to improve performance.
# "cupertino_store"
# TODO(DomesticMouse): Use 'const' with the constructor to improve performance.
# "dartpad_codelabs"
"deeplink_cookbook"
"ffigen_codelab"
# TODO(DomesticMouse): version solving failed.
# "firebase-auth-flutterfire-ui"
"firebase-emulator-suite"
# TODO(DomesticMouse): version solving failed.
# "firebase-get-to-know-flutter"
"flame-building-doodle-dash"
"github-client"
"google-maps-in-flutter"
# TODO(DomesticMouse): Use 'const' with the constructor to improve performance.
# "in_app_purchases"
"namer"
"plugin_codelab"
"star_counter"
"testing_codelab"
"tfagents-flutter"
"tfrs-flutter"
"tfserving-flutter"
"tooling"
"webview_flutter"
)
# Plugin codelab is failing on ubuntu-latest in CI.
if [[ "$OSTYPE" != "linux-gnu"* ]]; then
CODELABS+=("plugin_codelab")
fi
ci_codelabs "beta" "${CODELABS[@]}"
echo "== END OF TESTS"