File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
CodenameOne/src/com/codename1/ui Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change 1313jobs :
1414 build-ios :
1515 runs-on : macos-15 # pinning macos-15 avoids surprises during the cutover window
16- timeout-minutes : 20 # hard-stop the job after 20 minutes
16+ timeout-minutes : 25 # hard-stop the job after 25 minutes
1717 concurrency : # ensure only one mac build runs at once
1818 group : mac-ci
1919 cancel-in-progress : false # queue new ones instead of canceling in-flight
2424 - name : Setup workspace
2525 run : ./scripts/setup-workspace.sh -q -DskipTests
2626 # per-step timeout
27- timeout-minutes : 6
27+ timeout-minutes : 15
2828
2929 - name : Build iOS port
3030 run : ./scripts/build-ios-port.sh -q -DskipTests
Original file line number Diff line number Diff line change @@ -180,9 +180,6 @@ public Form() {
180180 this (new FlowLayout ());
181181 }
182182
183- public void testCIWorks () {
184- }
185-
186183 /**
187184 * Constructor that accepts a layout
188185 *
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ public class @MAIN_NAME@ {
1818 return;
1919 }
2020 Form helloForm = new Form("Hello Codename One", new BorderLayout());
21- helloForm.testCIWorks();
2221 helloForm.add(BorderLayout.CENTER, new Label("Hello Codename One"));
2322 helloForm.show();
2423 }
You can’t perform that action at this time.
0 commit comments