Skip to content

Commit 23ab748

Browse files
committed
[EXPERIMENTAL] gh-actions: Restrict to install rust/*.rmeta and rust/*.so in only x86 architecture
Signed-off-by: Yang Jeong Hun <[email protected]>
1 parent 986dbfa commit 23ab748

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,11 @@ jobs:
103103
install -Dt "$addon_path/drivers/media/tuners" -m644 drivers/media/tuners/*.h
104104
install -Dt "$addon_path/drivers/iio/common/hid-sensors" -m644 drivers/iio/common/hid-sensors/*.h
105105
find . -name 'Kconfig*' -exec install -Dm644 {} "$addon_path/{}" \;
106+
if [ ${{ matrix.arch }} == "x86" ]
107+
then
106108
install -Dt "$addon_path/rust" -m644 rust/*.rmeta
107109
install -Dt "$addon_path/rust" rust/*.so
110+
fi
108111
export arch
109112
if [ ${{ matrix.arch }} == "x86" ]
110113
then

0 commit comments

Comments
 (0)