helping CI stay green

This commit is contained in:
rusefillc 2022-08-27 14:51:41 -04:00
parent 470c44ba12
commit bd9a177074
5 changed files with 9 additions and 3 deletions

View File

@ -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

View File

@ -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/

View File

@ -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

View File

@ -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

View File

@ -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