-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflutter_ci_script_beta.sh
More file actions
executable file
·44 lines (38 loc) · 1.1 KB
/
flutter_ci_script_beta.sh
File metadata and controls
executable file
·44 lines (38 loc) · 1.1 KB
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
#!/usr/bin/env bash
set -e -o pipefail
DIR="${BASH_SOURCE%/*}"
source "$DIR/flutter_ci_script_shared.sh"
declare -a CODELABS=(
# TODO(domesticmouse): re-enable when stable increments
# "adaptive_app"
"boring_to_beautiful"
# TODO(domesticmouse): re-enable when stable increments
# "cookbook"
"cupertino_store"
"dartpad_codelabs"
# TODO(domesticmouse): re-enable when stable increments
# "firebase-get-to-know-flutter"
"friendly_chat"
# TODO(domesticmouse): re-enable when stable increments
# "github-client"
"google-maps-in-flutter"
"in_app_purchases"
# TODO(domesticmouse): re-enable when stable increments
# "photos-sharing"
"star_counter"
"startup_namer"
# TODO(domesticmouse): re-enable when stable increments
# "testing_codelab"
"tfagents-flutter"
"tfrs-flutter"
"tfserving-flutter"
"tooling"
# TODO(domesticmouse): re-enable when stable increments
# "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"