Skip to content

Commit

Permalink
Update the CI action to bundle firmware and programs in archive
Browse files Browse the repository at this point in the history
  • Loading branch information
mesheets committed Jul 27, 2024
1 parent 6609cc6 commit b11cf16
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/brickOS-bibo_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
name: brickOS-bibo_install_[runner~${{ matrix.os }}]_run${{ github.run_id }}.${{ github.run_number }}.${{ github.run_attempt }}
path: build/install.tar

- name: Prepare the firmware and program images for archiving
run: cp --preserve kernel/*.srec kernel/*.coff demo/

- name: Archive the firmware image
uses: actions/upload-artifact@v4
with:
Expand All @@ -54,7 +57,9 @@ jobs:
- name: Archive the demo program files
uses: actions/upload-artifact@v4
with:
name: brickOS-bibo_programs_[runner~${{ matrix.os }}]_run${{ github.run_id }}.${{ github.run_number }}.${{ github.run_attempt }}
name: brickOS-bibo_firmware+programs_[runner~${{ matrix.os }}]_run${{ github.run_id }}.${{ github.run_number }}.${{ github.run_attempt }}
path: |
demo/**/*.srec
demo/**/*.coff
demo/**/*.lx
demo/**/*.a

0 comments on commit b11cf16

Please sign in to comment.