Update .ci/build_pkgs.sh, .ci/download_sdk.sh, .ci/prepare_build_dir.sh files
This commit is contained in:
parent
b3185a39cd
commit
b0d402b80b
|
@ -1,7 +1,7 @@
|
||||||
cd /builds/$CI_PROJECT_PATH/wireless/
|
cd /builds/$CI_PROJECT_PATH/wireless/
|
||||||
PKGS=$(ls)
|
PKGS=$(ls)
|
||||||
|
|
||||||
cd ~/build_dir
|
cd tmp/build_dir
|
||||||
|
|
||||||
echo "=== Found new/modified packages: $PKGS"
|
echo "=== Found new/modified packages: $PKGS"
|
||||||
for PKG in $PKGS ; do
|
for PKG in $PKGS ; do
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
mkdir ~/sdk
|
mkdir tmp/sdk
|
||||||
cd ~/sdk
|
cd tmp/sdk
|
||||||
|
|
||||||
curl "https://$SDK_HOST/$SDK_PATH/sha256sums" -sS -o sha256sums
|
curl "https://$SDK_HOST/$SDK_PATH/sha256sums" -sS -o sha256sums
|
||||||
curl "https://$SDK_HOST/$SDK_PATH/sha256sums.asc" -sS -o sha256sums.asc
|
curl "https://$SDK_HOST/$SDK_PATH/sha256sums.asc" -sS -o sha256sums.asc
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
mkdir ~/build_dir
|
mkdir tmp/build_dir
|
||||||
cd ~/build_dir
|
cd tmp/build_dir
|
||||||
|
|
||||||
tar Jxf ~/sdk/$SDK_FILE --strip=1
|
tar Jxf tmp/sdk/$SDK_FILE --strip=1
|
||||||
|
|
||||||
cat > feeds.conf <<EOF
|
cat > feeds.conf <<EOF
|
||||||
src-git base https://git.openwrt.org/openwrt/openwrt.git
|
src-git base https://git.openwrt.org/openwrt/openwrt.git
|
||||||
|
|
Loading…
Reference in New Issue