bootutil: Disable MCUBOOT_BOOT_MAX_ALIGN assert for non-swap modes #525
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
- v*-branch | |
name: imgtool | |
concurrency: | |
group: imgtool-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
environment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Cache pip | |
uses: actions/cache@v1 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip | |
- name: Install packages | |
run: | | |
export PATH="$HOME/.local/bin:$PATH" | |
./ci/imgtool_install.sh | |
- name: Publish | |
env: | |
TWINE_TOKEN: ${{ secrets.TWINE_TOKEN }} | |
run: | | |
export PATH="$HOME/.local/bin:$PATH" | |
./ci/imgtool_run.sh |