Skip to content

Commit

Permalink
Upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelhuffman committed Nov 15, 2024
1 parent f08f0fc commit ac61b10
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,13 @@ jobs:
- name: Update pip reqs
run : python3 -m pip install --upgrade -r tools/requirements.txt --break-system-packages
- name: buck path
run: echo "~/.cargo/bin" >> "$GITHUB_PATH"
run: echo "~/.cargo/bin:/opt/Xilinx/Vivado/2024.1/bin" >> "$GITHUB_PATH"
- name: Build grapefruit bitstream
run: buck2 build //hdl/projects/grapefruit:grapefruit --show-output
- uses: actions/upload-artifact@v4
with:
name: gfruit-image
path: "./buck-out/v2/gen/root/**/*"

bsv-streams:
needs: changes
Expand All @@ -60,4 +64,8 @@ jobs:
run: ./cobble build -v "//.*#bitstream"
working-directory: ./build
- name: backup build-dir
run: cp -R ./build /tmp/cobble_build_bkup
run: cp -R ./build /tmp/cobble_build_bkup
- uses: actions/upload-artifact@v4
with:
name: bsv-images
path: "./build/latest/**/*"

0 comments on commit ac61b10

Please sign in to comment.