sim: emits *_SWAP_USING_SCRATCH macros #8
This file contains hidden or 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: | |
| - master | |
| - v*-branch | |
| name: imgtool | |
| 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 |