Skip to content

Commit d07bbfb

Browse files
authored
Merge pull request #26 from xqyjlj/update
添加更多软件包
2 parents 20ac63f + 5ff7168 commit d07bbfb

93 files changed

Lines changed: 3895 additions & 126 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/build.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -59,21 +59,15 @@ jobs:
5959
xmake smart-image -f ext4 -vD -o build/${{ matrix.arch }}-ext4.img
6060
popd
6161
62-
- name: ⬆️ upload artifact
63-
uses: actions/upload-artifact@v3
64-
with:
65-
name: build-smart-apps-${{ github.run_number }}
66-
path: |
67-
apps/build/cross
68-
apps/build/rootfs
69-
apps/build/*.img
70-
7162
build-linux-apps:
7263
runs-on: ubuntu-latest
7364
strategy:
7465
matrix:
7566
app:
67+
- busybox
68+
- cpp
7669
- hello
70+
- micropython
7771
- zlib
7872

7973
steps:
@@ -95,10 +89,3 @@ jobs:
9589
xmake f -a x86_64 --target_os=linux -vyD
9690
xmake -j$(nproc) -vyD ${{ matrix.app }}
9791
popd
98-
99-
- name: ⬆️ upload artifact
100-
uses: actions/upload-artifact@v3
101-
with:
102-
name: build-smart-apps-${{ github.run_number }}
103-
path: |
104-
apps/build/cross

apps/busybox/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-06-21 zhouquan initial version
21+
-- 2023-06-21 xqyjlj initial version
2222
--
2323

2424
add_rules("mode.debug", "mode.release")

apps/cpp/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-03-10 zhouquan initial version
21+
-- 2023-03-10 xqyjlj initial version
2222
--
2323
add_rules("mode.debug", "mode.release")
2424

apps/hello/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-03-10 zhouquan initial version
21+
-- 2023-03-10 xqyjlj initial version
2222
--
2323
add_rules("mode.debug", "mode.release")
2424

apps/micropython/xmake.lua

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
-- Licensed under the Apache License, Version 2.0 (the "License");
2+
-- You may not use this file except in compliance with the License.
3+
-- You may obtain a copy of the License at
4+
--
5+
-- http://www.apache.org/licenses/LICENSE-2.0
6+
--
7+
-- Unless required by applicable law or agreed to in writing, software
8+
-- distributed under the License is distributed on an "AS IS" BASIS,
9+
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10+
-- See the License for the specific language governing permissions and
11+
-- limitations under the License.
12+
--
13+
-- Copyright (C) 2022-2023 RT-Thread Development Team
14+
--
15+
-- @author xqyjlj
16+
-- @file xmake.lua
17+
--
18+
-- Change Logs:
19+
-- Date Author Notes
20+
-- ------------ ---------- -----------------------------------------------
21+
-- 2023-06-21 xqyjlj initial version
22+
--
23+
add_rules("mode.debug", "mode.release")
24+
25+
add_requires("micropython", {configs = {shared = false}})
26+
27+
target("micropython")
28+
do
29+
set_kind("phony")
30+
add_packages("micropython")
31+
end
32+
target_end()

apps/shm_ping/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-03-10 zhouquan initial version
21+
-- 2023-03-10 xqyjlj initial version
2222
--
2323
add_rules("mode.debug", "mode.release")
2424

apps/shm_pong/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-03-10 zhouquan initial version
21+
-- 2023-03-10 xqyjlj initial version
2222
--
2323
add_rules("mode.debug", "mode.release")
2424

apps/umailbox/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-03-10 zhouquan initial version
21+
-- 2023-03-10 xqyjlj initial version
2222
--
2323
add_rules("mode.debug", "mode.release")
2424

apps/webclient/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-03-10 zhouquan initial version
21+
-- 2023-03-10 xqyjlj initial version
2222
--
2323
add_rules("mode.debug", "mode.release")
2424

apps/webserver/xmake.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212
--
1313
-- Copyright (C) 2022-2023 RT-Thread Development Team
1414
--
15-
-- @author zhouquan
15+
-- @author xqyjlj
1616
-- @file xmake.lua
1717
--
1818
-- Change Logs:
1919
-- Date Author Notes
2020
-- ------------ ---------- -----------------------------------------------
21-
-- 2023-03-10 zhouquan initial version
21+
-- 2023-03-10 xqyjlj initial version
2222
--
2323
add_rules("mode.debug", "mode.release")
2424

0 commit comments

Comments
 (0)