main.yml: disable broken SDK test

The SDK fails to build with a dependency error:

Problem: package packagegroup-rust-cross-canadian-qemux86 requires rust-cross-canadian-x86-64, but none of the providers can be installed
 - conflicting requests
 - nothing provides libc.so.6(GLIBC_2.34)(64bit)
 - nothing provides libstdc++.so.6(GLIBCXX_3.4.29)(64bit)
This commit is contained in:
Steven Walter
2022-09-08 20:01:01 -04:00
parent c92db6c0a0
commit 24c3e2016d

View File

@@ -31,18 +31,3 @@ jobs:
cd poky
. oe-init-build-env
bitbake rust-hello-world
- name: Test SDK
run: |
SDK_DIR=$PWD/sdk-test
cd poky
. oe-init-build-env
bitbake core-image-minimal -c populate_sdk
rm -rf $SDK_DIR
./$(find ./tmp/deploy/sdk/ -name '*.sh') -d $SDK_DIR -y
. $(find $SDK_DIR -name 'environment-setup-*')
PROG=hello
rm -rf $PROG
cargo new $PROG
cd $PROG
cargo build
file $(find ./target -name $PROG)