helping CI stay green
This commit is contained in:
parent
8b8ce329b3
commit
e53cad4459
|
@ -15,6 +15,9 @@ jobs:
|
|||
distribution: 'zulu'
|
||||
java-version: '8'
|
||||
|
||||
- name: Install Tools
|
||||
run: sudo apt-get install mtools
|
||||
|
||||
- name: Generate Configs to survive meta info change
|
||||
working-directory: ./firmware/
|
||||
run: ./gen_config_default.sh
|
||||
|
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
run: javac -version
|
||||
|
||||
- name: Install Tools
|
||||
run: sudo apt-get install sshpass
|
||||
run: sudo apt-get install sshpass mtools
|
||||
|
||||
- name: Generate Configs to survive meta info change
|
||||
working-directory: ./firmware/
|
||||
|
|
|
@ -62,4 +62,5 @@ java \
|
|||
hw_layer/mass_storage/create_ini_image.sh ./tunerstudio/generated/${INI} ./hw_layer/mass_storage/ramdisk_image.h 128 ${SHORT_BOARDNAME} ${BOARD_SPECIFIC_URL}
|
||||
hw_layer/mass_storage/create_ini_image_compressed.sh ./tunerstudio/generated/${INI} ./hw_layer/mass_storage/ramdisk_image_compressed.h 1088 ${SHORT_BOARDNAME} ${BOARD_SPECIFIC_URL}
|
||||
|
||||
echo "Happy ${SHORT_BOARDNAME}"
|
||||
exit 0
|
||||
|
|
|
@ -42,7 +42,7 @@ else
|
|||
bash --version
|
||||
# bash >=4.3 magic
|
||||
printf -v current_date '%(%Y-%m-%d)T' -1
|
||||
echo [${current_date}]
|
||||
echo "create_ini_image.sh says [${current_date}]"
|
||||
fi
|
||||
|
||||
# Put the zip inside the filesystem
|
||||
|
@ -62,3 +62,4 @@ xxd -i $IMAGE \
|
|||
> $H_OUTPUT
|
||||
|
||||
rm $ZIP $IMAGE
|
||||
exit 0
|
|
@ -42,7 +42,7 @@ else
|
|||
bash --version
|
||||
# bash >=4.3 magic
|
||||
printf -v current_date '%(%Y-%m-%d)T' -1
|
||||
echo [${current_date}]
|
||||
echo "create_ini_image_compressed.sh says [${current_date}]"
|
||||
fi
|
||||
|
||||
# Put the zip inside the filesystem
|
||||
|
@ -62,3 +62,4 @@ xxd -i $IMAGE.gz \
|
|||
> $H_OUTPUT
|
||||
|
||||
rm $IMAGE.gz
|
||||
exit 0
|
Loading…
Reference in New Issue