Skip to content

Commit 86172eb

Browse files
authored
[infra] Remove symlink workaround for cross-compilation (#16237)
This commit removes the temporary symlink creation step that was creating a symbolic link from usr/lib to lib in the cross-compilation rootfs. ONE-DCO-1.0-Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
1 parent 9220f19 commit 86172eb

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

.github/workflows/build-pub-dev-docker.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,10 @@ jobs:
8787
branch: master
8888
name: rootfs_arm_${{ matrix.ubuntu_code }}
8989

90-
# Workaround: symlink for rootfs checker in cmake toolchain file
9190
- name: Install rootfs for cross build and build
9291
run: |
9392
mkdir -p tools/cross/rootfs
9493
tar -zxf rootfs_arm_${{ matrix.ubuntu_code }}.tar.gz -C tools/cross/rootfs
95-
pushd tools/cross/rootfs/arm
96-
ln -sf usr/lib lib
97-
popd
9894
make -f Makefile.template
9995
10096
test-x64-image:

.github/workflows/run-onert-cross-build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,10 @@ jobs:
7979
branch: master
8080
name: rootfs_${{ matrix.platform }}_${{ matrix.ubuntu_code }}
8181

82-
# Workaround: symlink for rootfs checker in cmake toolchain file
8382
- name: Install rootfs for cross build
8483
run: |
8584
mkdir -p tools/cross/rootfs
8685
tar -zxf rootfs_${{ matrix.platform }}_${{ matrix.ubuntu_code }}.tar.gz -C tools/cross/rootfs
87-
pushd tools/cross/rootfs/${{ matrix.platform }}
88-
ln -sf usr/lib lib
89-
popd
9086
9187
- name: Build onert
9288
run: |

0 commit comments

Comments
 (0)