Merge pull request #1074 from haverland/rolling

Release creation like CaCo3's update-ota2
This commit is contained in:
jomjol
2022-09-25 18:27:28 +02:00
committed by GitHub
4 changed files with 156 additions and 114 deletions

View File

@@ -158,6 +158,18 @@ jobs:
name: "update__${{ github.ref_name }}_(${{ steps.vars.outputs.sha_short }})" name: "update__${{ github.ref_name }}_(${{ steps.vars.outputs.sha_short }})"
path: ./dist/* path: ./dist/*
- name: Store generated files in cache
uses: actions/cache@v3
with:
path: |
./code/.pio/build/esp32cam/firmware.bin
./code/.pio/build/esp32cam/partitions.bin
./code/.pio/build/esp32cam/bootloader.bin
./sd-card/html/version.txt
./dist
key: ${{ github.run_number }}-pack-for-OTA-v2
######################################################################################### #########################################################################################
@@ -181,26 +193,52 @@ jobs:
./sd-card/html/version.txt ./sd-card/html/version.txt
key: ${{ github.run_number }} key: ${{ github.run_number }}
#########################################################################################
## Prepare and create release
#########################################################################################
release:
runs-on: ubuntu-latest
needs: pack-for-OTA-v2
steps:
- uses: actions/checkout@v2
- name: Get generated files from cache
uses: actions/cache@v3
with:
path: |
./code/.pio/build/esp32cam/firmware.bin
./code/.pio/build/esp32cam/partitions.bin
./code/.pio/build/esp32cam/bootloader.bin
./sd-card/html/version.txt
./dist
key: ${{ github.run_number }}-pack-for-OTA-v2
- name: Set Variables - name: Set Variables
id: vars id: vars
run: | run: |
echo "::set-output name=sha_short::$(git rev-parse --short HEAD)" echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
- name: Copy artifacts to firmware folder and create initial_esp32_setup.zip
- name: Prepare artifacts for release
run: | run: |
ls -la ./dist
mkdir -p firmware mkdir -p firmware
# copy builds to firmware folder for committing in next step rm -rf firmware/*
mkdir -p release
# copy builds to firmware folder
cp -f "./code/.pio/build/esp32cam/firmware.bin" "firmware/firmware.bin" cp -f "./code/.pio/build/esp32cam/firmware.bin" "firmware/firmware.bin"
cp -f "./code/.pio/build/esp32cam/bootloader.bin" "firmware/bootloader.bin" cp -f "./code/.pio/build/esp32cam/bootloader.bin" "firmware/bootloader.bin"
cp -f "./code/.pio/build/esp32cam/partitions.bin" "firmware/partitions.bin" cp -f "./code/.pio/build/esp32cam/partitions.bin" "firmware/partitions.bin"
cd sd-card zip -r ./firmware/sd-card.zip sd-card
rm -f ../firmware/html.zip # create a update.zip like "update__rolling"
rm -f ../firmware/README.md cd ./dist
zip -r ../firmware/html.zip html zip -r ../release/update.zip .
mkdir ../dist cd ../firmware
cd ../dist zip -r ../release/initial_esp32_setup.zip .
- name: Upload initial_esp32_setup.zip artifact (Firmware + Bootloader + Partitions + Web UI + CNN)
- name: Upload initial_esp32_setup.zip artifact (Firmware + Bootloader + Partitions + Web UI)
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: "initial_esp32_setup__${{ github.ref_name }}_(${{ steps.vars.outputs.sha_short }})" name: "initial_esp32_setup__${{ github.ref_name }}_(${{ steps.vars.outputs.sha_short }})"
@@ -238,7 +276,7 @@ jobs:
name: ${{ steps.get_version.outputs.version-without-v }} name: ${{ steps.get_version.outputs.version-without-v }}
body: ${{ steps.extract-release-notes.outputs.release_notes }} body: ${{ steps.extract-release-notes.outputs.release_notes }}
files: | files: |
firmware/* release/*
# Commit&Push Changelog to master branch. Must be manually merged back to rolling # Commit&Push Changelog to master branch. Must be manually merged back to rolling

4
.gitignore vendored
View File

@@ -7,7 +7,9 @@
/sd-card/html/debug/ /sd-card/html/debug/
/firmware/ /firmware/
version.txt version.txt
/dist/
/dist_release/
/dist_old_ota
CMakeLists.txt.user CMakeLists.txt.user
CMakeCache.txt CMakeCache.txt
CMakeFiles CMakeFiles

View File

@@ -2,19 +2,15 @@
## [Unreleased] ## [Unreleased]
## [11.3.9] - 2022-09-20
### Added ### Added
- auto release creation - automatic release creation
- newest firmware of rolling branch now uploaded to <https://github.com/jomjol/AI-on-the-edge-device/actions>
### Changed - \#1068 new safer and easier update mechanismn. Use only the update.zip of the release for firmware, html and new models.
- something else
### Fixed ### Fixed
- \#924 - fix of the Fix - \#1029 wrong change of checkDigitConsistency now working like releases before 11.3.1
## [10.6.2] - (2022-07-24) ## [10.6.2] - (2022-07-24)
@@ -571,6 +567,10 @@ External Illumination
- Initial Version - Initial Version
[Unreleased]: https://github.com/haverland/AI-on-the-edge-device/compare/11.3.9...HEAD [Unreleased]: https://github.com/haverland/AI-on-the-edge-device/compare/11.4.3...HEAD
[11.4.3]: https://github.com/haverland/AI-on-the-edge-device/compare/10.6.2...11.4.3
[11.4.2]: https://github.com/haverland/AI-on-the-edge-device/compare/10.6.2...11.4.2
[11.3.9]: https://github.com/haverland/AI-on-the-edge-device/compare/10.6.2...11.3.9 [11.3.9]: https://github.com/haverland/AI-on-the-edge-device/compare/10.6.2...11.3.9

View File

@@ -753,11 +753,12 @@ std::string unzip_new(std::string _in_zip_file, std::string _target_zip, std::st
mz_zip_reader_file_stat(&zip_archive, i, &file_stat); mz_zip_reader_file_stat(&zip_archive, i, &file_stat);
sprintf(archive_filename, file_stat.m_filename); sprintf(archive_filename, file_stat.m_filename);
if (!file_stat.m_is_directory) {
// Try to extract all the files to the heap. // Try to extract all the files to the heap.
p = mz_zip_reader_extract_file_to_heap(&zip_archive, archive_filename, &uncomp_size, 0); p = mz_zip_reader_extract_file_to_heap(&zip_archive, archive_filename, &uncomp_size, 0);
if (!p) if (!p)
{ {
printf("mz_zip_reader_extract_file_to_heap() failed!\n"); printf("mz_zip_reader_extract_file_to_heap() failed on file %s\n", archive_filename);
mz_zip_reader_end(&zip_archive); mz_zip_reader_end(&zip_archive);
return ret; return ret;
} }
@@ -804,6 +805,7 @@ std::string unzip_new(std::string _in_zip_file, std::string _target_zip, std::st
// We're done. // We're done.
mz_free(p); mz_free(p);
} }
}
// Close the archive, freeing any resources it was using // Close the archive, freeing any resources it was using
mz_zip_reader_end(&zip_archive); mz_zip_reader_end(&zip_archive);