File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 23
23
- ${SHIPPABLE_BUILD_DIR}/sources
24
24
pre_ci_boot :
25
25
image_name : zephyrprojectrtos/ci
26
- image_tag : v0.4-rc7
26
+ image_tag : v0.5-rc5
27
27
pull : true
28
28
options : " -e HOME=/home/buildslave --privileged=true --tty --net=bridge --user buildslave"
29
29
37
37
git clone https://github.com/zephyrproject-rtos/meta-zephyr-sdk.git;
38
38
./meta-zephyr-sdk/scripts/meta-zephyr-sdk-clone.sh;
39
39
./meta-zephyr-sdk/scripts/meta-zephyr-sdk-build-split.sh tools || ./meta-zephyr-sdk/scripts/meta-zephyr-sdk-build-split.sh tools || ./meta-zephyr-sdk/scripts/meta-zephyr-sdk-build-split.sh tools;
40
+ mv ./meta-zephyr-sdk/scripts/toolchains/zephyr-sdk-x86_64-hosttools-standalone-0.9.sh .
40
41
else
41
42
./go.sh ${TARGET};
42
43
fi
@@ -48,10 +49,12 @@ build:
48
49
sudo -E sh -c 'echo "GIT_TAG_NAME=${GIT_TAG_NAME}" >> $JOB_STATE/sdk.env';
49
50
cat $JOB_STATE/sdk.env;
50
51
export S3_PATH="s3://incoming.zephyrproject.org/sdk-ng/${SDKNG_CIREPO_VERSIONNUMBER}";
51
- echo "uploading ${TARGET}.tar.bz2 to ${S3_PATH}/";
52
52
if [ "${TARGET}" == 'tools' ]; then
53
+ echo "uploading zephyr-sdk-x86_64-hosttools-standalone-0.9.sh to ${S3_PATH}/";
53
54
aws s3 cp zephyr-sdk-x86_64-hosttools-standalone-0.9.sh ${S3_PATH}/;
54
55
else
56
+ echo "uploading ${TARGET}.tar.bz2 to ${S3_PATH}/";
57
+ tar --exclude='build.log.bz2' -C build/output/ -jcvf ${TARGET}.tar.bz2 *-zephyr-*
55
58
aws s3 cp ${TARGET}.tar.bz2 ${S3_PATH}/;
56
59
fi
57
60
fi
Original file line number Diff line number Diff line change @@ -97,8 +97,6 @@ for t in ${TARGETS}; do
97
97
unset CC
98
98
fi
99
99
100
- tar --exclude=' build.log.bz2' -C build/output/ -jcvf ${t} .tar.bz2 ${t} -zephyr-elf
101
-
102
100
popd
103
101
rm -rf build_${t}
104
102
You can’t perform that action at this time.
0 commit comments