File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ async function installApp(app, page) {
83
83
await page . getByRole ( 'button' , { name : 'Sign In' } ) . click ( )
84
84
await takeScreenshot ( page , __filename , 'logged-in' ) ;
85
85
86
- const apps = [ 'bakery-cc ' , 'bakery' , 'cc-starter ' ] ;
86
+ const apps = [ 'cc-starter ' , 'bakery-cc ' , 'bakery ' ] ;
87
87
for ( const app of apps ) {
88
88
await installApp ( app , page ) ;
89
89
}
Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ compileCCStarter() {
26
26
log -n " * Building $APP app *"
27
27
computeMvn
28
28
PRESETS=" "
29
- for i in latest-java partial-auth partial-controlcenter partial-kubernetes partial-prerelease partial-flow-example-auth-views partial-hilla-example-views partial-hilla-example-auth-views
29
+ APPS=" latest-java partial-auth partial-controlcenter partial-kubernetes partial-prerelease partial-hilla-example-views partial-flow-example-auth-views partial-hilla-example-auth-views"
30
+ APPS=" latest-java partial-auth partial-controlcenter partial-kubernetes partial-prerelease partial-hilla-example-views"
31
+ for i in $APPS
30
32
do
31
33
PRESETS=" $PRESETS &preset=$i "
32
34
done
@@ -66,15 +68,12 @@ compileCC() {
66
68
# # Build Apps used in CC and CC itself if testing the snapshot
67
69
# $1 whether CC version is snapshot or not
68
70
buildCC () {
69
- log -n " ** Building Control Center and APPS **"
71
+ log -n " ** Building Control Center and APPS - $VERSION $CCVERSION $1 **"
70
72
local D=$PWD
71
73
if [ -z " $SKIPBUILD " ]; then
72
- [ " $1 " != true ] || compileCC || return 1
73
- cd $D
74
- compileCCStarter || return 1
75
- cd $D
76
- compileBakery || return 1
77
- cd $D
74
+ [ " $1 " != true ] || compileCC || return 1 ; cd $D
75
+ compileCCStarter || return 1 ; cd $D
76
+ compileBakery || return 1 ; cd $D
78
77
fi
79
78
[ -n " $SKIPHELM " ] || runCmd -q " Update helm dependencies" helm dependency build charts/control-center
80
79
prepareRegistry || return 1
You can’t perform that action at this time.
0 commit comments