Skip to content

Commit ff8a463

Browse files
committed
Reverted code changes and made iOS CI timeout lenient
1 parent 3adb8f7 commit ff8a463

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.github/workflows/scripts-ios.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
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
@@ -24,7 +24,7 @@ jobs:
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

CodenameOne/src/com/codename1/ui/Form.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff 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
*

scripts/templates/HelloCodenameOne.java.tmpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)