Commit 5b2d5ba 1 parent 929bc1a commit 5b2d5ba Copy full SHA for 5b2d5ba
File tree 1 file changed +4
-10
lines changed
1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -95,24 +95,19 @@ jobs:
95
95
96
96
- name : Download package
97
97
run : |
98
- cd project/friendlywrt
99
- make download -j8
100
- find dl -size -1024c -exec ls -l {} \;
101
- find dl -size -1024c -exec rm -f {} \;
98
+ echo "stub download package"
102
99
103
100
- name : Compile friendlyWrt
104
101
id : compile
105
102
continue-on-error : true
106
103
run : |
107
- cd project/friendlywrt
108
- make -j$(nproc) || make -j1 V=s
104
+ echo "stub compile friendlywrt"
109
105
echo $?
110
106
111
107
- name : Check the result and try again
112
108
if : steps.compile.outcome == 'failure'
113
109
run : |
114
- cd project/friendlywrt
115
- make -j1 V=s
110
+ echo "stub compile friendlywrt2"
116
111
117
112
- name : Create rootfs package
118
113
id : create_rootfs_package
@@ -121,8 +116,7 @@ jobs:
121
116
source .current_config.mk
122
117
[ "${{ matrix.SET }}" == "docker" ] && SUFFIX="-docker"
123
118
rootfs_filename="rootfs-friendlywrt-${{ matrix.VERSION }}${SUFFIX}.tgz"
124
- tar cvzf ../artifact/${rootfs_filename} ${FRIENDLYWRT_SRC}/${FRIENDLYWRT_ROOTFS} \
125
- ${FRIENDLYWRT_SRC}/${FRIENDLYWRT_PACKAGE_DIR}
119
+ wget https://github.com/friendlyarm/Actions-FriendlyWrt/releases/download/FriendlyWrt-2024-04-03/${rootfs_filename} -O ../artifact/${rootfs_filename}
126
120
echo "##[set-output name=rootfs_filename;]$rootfs_filename"
127
121
128
122
- name : Upload rootfs package
You can’t perform that action at this time.
0 commit comments