Skip to content

Commit 90de3ed

Browse files
committed
actions: build all examples for web, if possible
Some projects are desktop or mobile only. Use fake API keys were needed.
1 parent 16dc7cb commit 90de3ed

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

.github/workflows/package-feathersui.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,62 @@ jobs:
3737
- name: Ant Build
3838
run: |
3939
ant full -Dflashsdk.root="${{ env.AIR_HOME }}" -Dstarling.root="$GITHUB_WORKSPACE/starling/starling/src" -Dflexunit.root="$GITHUB_WORKSPACE/flexunit" -Dflashplayer="/usr/local/bin/flashplayer"
40+
- name: Example Ant Build - ComponentsExplorer
41+
working-directory: examples/ComponentsExplorer
42+
run: |
43+
ant build-web
44+
- name: Example Ant Build - DragAndDrop
45+
working-directory: examples/DragAndDrop
46+
run: |
47+
ant build
48+
- name: Example Ant Build - DrawersExplorer
49+
working-directory: examples/DrawersExplorer
50+
run: |
51+
ant build-web
52+
- name: Example Ant Build - HelloWorld
53+
working-directory: examples/HelloWorld
54+
run: |
55+
ant build-web
56+
- name: Example Ant Build - LayoutExplorer
57+
working-directory: examples/LayoutExplorer
58+
run: |
59+
ant build-web
60+
- name: Example Ant Build - Magic8Chat
61+
working-directory: examples/Magic8Chat
62+
run: |
63+
ant build-web
64+
- name: Example Ant Build - PullToRefresh
65+
working-directory: examples/PullToRefresh
66+
run: |
67+
ant build-web
68+
- name: Example Ant Build - StackScreenNavigatorExplorer
69+
working-directory: examples/StackScreenNavigatorExplorer
70+
run: |
71+
ant build-web
72+
- name: Example Ant Build - Tabs
73+
working-directory: examples/Tabs
74+
run: |
75+
ant build-web
76+
- name: Example Ant Build - TileList
77+
working-directory: examples/TileList
78+
run: |
79+
ant build-web
80+
- name: Example Ant Build - Todos
81+
working-directory: examples/Todos
82+
run: |
83+
ant build-web
84+
- name: Example Ant Build - TrainTimes
85+
working-directory: examples/TrainTimes
86+
run: |
87+
ant build-web
88+
- name: Example Ant Build - TransitionsExplorer
89+
working-directory: examples/TransitionsExplorer
90+
run: |
91+
ant build-web
92+
- name: Example Ant Build - YouTubeFeeds
93+
working-directory: examples/YouTubeFeeds
94+
run: |
95+
ant build-web -Dyoutube.api.key=abc123
4096
- uses: actions/upload-artifact@v4
4197
with:
4298
name: feathersui-starling

0 commit comments

Comments
 (0)