BMC Lite platforms now receive dynamically generated content #79
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
| name: flashy | |
| on: | |
| push: | |
| paths: | |
| - "tools/flashy/**" | |
| pull_request: | |
| paths: | |
| - "tools/flashy/**" | |
| jobs: | |
| flashy-unit-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v4 | |
| - name: Checkout Repo | |
| uses: actions/checkout@v3 | |
| - name: Run unit tests | |
| run: tools/flashy/scripts/run_unit_tests.sh | |
| flashy-build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Go | |
| uses: actions/setup-go@v4 | |
| - name: Checkout Repo | |
| uses: actions/checkout@v3 | |
| - name: Build flashy | |
| run: tools/flashy/build.sh | |
| - name: Upload artifact | |
| if: github.ref == 'refs/heads/helium' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: flashy | |
| path: tools/flashy/build/flashy | |
| flashy-release: | |
| if: github.ref == 'refs/heads/helium' | |
| runs-on: ubuntu-latest | |
| needs: | |
| - flashy-unit-test | |
| - flashy-build | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v3 | |
| - name: Download flashy build | |
| uses: actions/download-artifact@v2 | |
| with: | |
| name: flashy | |
| path: tools/flashy/build | |
| - name: Prepare release folder | |
| run: | | |
| mkdir tools/flashy/release tools/flashy/release/scripts | |
| cp tools/flashy/build/flashy tools/flashy/release/flashy | |
| cp tools/flashy/scripts/run_flashy*.sh tools/flashy/release/scripts | |
| - name: Get short SHA | |
| id: slug | |
| run: echo "sha7=$(echo ${GITHUB_SHA} | cut -c1-7)" >> $GITHUB_OUTPUT | |
| - name: Create Release | |
| id: create_release | |
| uses: actions/create-release@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| tag_name: flashy-${{ steps.slug.outputs.sha7 }} | |
| release_name: flashy-${{ steps.slug.outputs.sha7 }} | |
| draft: false | |
| prerelease: false | |
| - name: Upload Release Asset | |
| id: upload-release-asset | |
| uses: actions/upload-release-asset@v1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| upload_url: ${{ steps.create_release.outputs.upload_url }} | |
| asset_path: tools/flashy/release | |
| asset_name: flashy | |
| asset_content_type: application/zip |