File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ async function installApp(app, page) {
36
36
await envDialog . getByPlaceholder ( 'Name' ) . locator ( 'input' ) . fill ( 'SPRING_FLYWAY_ENABLED' ) ;
37
37
await envDialog . getByPlaceholder ( 'Value' ) . locator ( 'input' ) . fill ( 'false' ) ;
38
38
await envDialog . getByLabel ( "Add" ) . click ( ) ;
39
+ await envDialog . getByPlaceholder ( 'Name' ) . locator ( 'input' ) . fill ( 'SHOW_INFO' ) ;
40
+ await envDialog . getByPlaceholder ( 'Value' ) . locator ( 'input' ) . fill ( 'true' ) ;
41
+ await envDialog . getByLabel ( "Add" ) . click ( ) ;
39
42
await takeScreenshot ( page , __filename , `env-dialog-filled-${ app } ` ) ;
40
43
await envDialog . getByLabel ( "Close" ) . click ( ) ;
41
44
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ compileBakery() {
12
12
computeMvn
13
13
checkoutDemo $CC_APP_REPO || return 1
14
14
setDemoVersion $CC_APP_REPO $VERSION > /dev/null || return 1
15
- applyPatches $APP " " $APP " " || return 1
15
+ applyPatches $APP next " $VERSION " prod || return 1
16
16
setMvnDependencyVersion com.vaadin control-center-starter " $CCVERSION " " -Pcontrol-center" || return 1
17
17
runToFile " '$MVN ' -ntp -B clean install -Pproduction -DskipTests" " compile-$APP .out" " $VERBOSE " || return 1
18
18
runCmd " Building Docker image for $APP " docker build -t $REGISTRY /$APP :local . || return 1
Original file line number Diff line number Diff line change 9
9
# # These especial patches are loaded and applied in this script
10
10
11
11
# # Run after updating Vaadin/Hilla versions in order to patch sources
12
+ # $1 application/starter name
13
+ # $2 type (current | next)
14
+ # $3 version
15
+ # $4 mode (dev | prod)
12
16
applyPatches () {
13
17
app_=$1 ; type_=$2 ; vers_=$3 ; mod_=$4
14
18
[ -n " $TEST " ] || log " Applying Patches for $app_ $type_ $vers_ "
@@ -47,7 +51,8 @@ applyPatches() {
47
51
;;
48
52
esac
49
53
case " $vers_ " in
50
- 24.8.0.beta1) runCmd " Installing magic-string for $vers_ " " npm i -S magic-string" ;;
54
+ # 24.8.0.beta1) runCmd "Installing magic-string for $vers_" "npm i -S magic-string";;
55
+ 24.8.0* ) changeMavenBlock parent org.springframework.boot spring-boot-starter-parent 3.5.0 ;;
51
56
esac
52
57
53
58
# always successful
You can’t perform that action at this time.
0 commit comments