From: 최종헌/MDE Lab(SR)/삼성전자 Date: Fri, 15 Nov 2024 06:54:16 +0000 (+0900) Subject: Add OOBE skip to action script (#582) X-Git-Tag: accepted/tizen/9.0/unified/20241121.045854~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7fe1629613bdf73ab797ef2281789cb75e82ae1;p=platform%2Fcore%2Fdotnet%2Flauncher.git Add OOBE skip to action script (#582) Change-Id: I2e9779dc81dde5ab1039f884129c0b945d778bbc --- diff --git a/.github/workflows/launcher-action.yml b/.github/workflows/launcher-action.yml index a4ccb5e..767d143 100644 --- a/.github/workflows/launcher-action.yml +++ b/.github/workflows/launcher-action.yml @@ -13,8 +13,19 @@ jobs: shell: bash run: | dude download -k > ./dude.log - sleep 60 - sdb devices + sleep 100 + if [ $(sdb get-state 2>/dev/null | grep -c "device") -eq 0 ]; then + echo "Device is not connected" + else + echo "Device is connected" + sdb devices + sdb -d root on + sdb -d shell osu --resize + sdb -d shell mount -o remount,rw / + sdb -d shell mount -o remount,rw /hal + sdb -d shell vconftool set -t bool db/setting/oobe 0 -f + echo "device 10000000d15e1aff is ready." + fi if: success() Tizen_Unified_armv7l_GBS_Build: @@ -71,8 +82,10 @@ jobs: run: | sdb devices sdb -d root on - sdb -d shell mount -o remount,rw / sdb -d shell osu --resize + sdb -d shell mount -o remount,rw / + sdb -d shell mount -o remount,rw /hal + sdb -d shell vconftool set -t bool db/setting/oobe 0 -f echo "device 10000000d15e1aff is ready." if: success() @@ -175,8 +188,10 @@ jobs: run: | sdb devices sdb -d root on - sdb -d shell mount -o remount,rw / sdb -d shell osu --resize + sdb -d shell mount -o remount,rw / + sdb -d shell mount -o remount,rw /hal + sdb -d shell vconftool set -t bool db/setting/oobe 0 -f echo "device 10000000d15e1aff is ready." if: success() @@ -236,7 +251,10 @@ jobs: sleep 60 sdb devices sdb -d root on + sdb -d shell osu --resize sdb -d shell mount -o remount,rw / + sdb -d shell mount -o remount,rw /hal + sdb -d shell vconftool set -t bool db/setting/oobe 0 -f echo "device 10000000d15e1aff is ready." if: success()