Set PL0 PAUSER to 1 for test image bundles #1
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
name: Build FPGA SD image | |
on: | |
pull_request: | |
paths: | |
- "ci-tools/fpga-image/**" | |
push: | |
branches: ["main"] | |
paths: | |
- "ci-tools/fpga-image/**" | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
build_sd_image: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install pre-requisites | |
run: | | |
sudo apt-get update | |
sudo apt-get -y install debootstrap binfmt-support qemu-user-static u-boot-tools | |
- name: Build SD image | |
run: | | |
cd ci-tools/fpga-image | |
sudo bash build.sh | |
- name: 'Upload image as artifact' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: caliptra-fpga-image | |
path: ci-tools/fpga-image/out/image.img | |
retention-days: 90 |