9595 steps :
9696 - uses : actions/checkout@v4
9797
98- # We only write to the cache when merging into main, so we don't need th autenticate on pull-request.
98+ # We only write to the cache when merging into main, so we don't need th authenticate on pull-request.
9999 - uses : google-github-actions/auth@v2
100100 if : github.event_name != 'pull_request'
101101 with :
@@ -110,7 +110,7 @@ jobs:
110110 substituters = https://nix-cache.lowrisc.org/public/ https://cache.nixos.org/
111111 trusted-public-keys = nix-cache.lowrisc.org-public-1:O6JLD0yXzaJDPiQW1meVu32JIDViuaPtGDfjlOopU7o= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
112112
113- # Check if there's a bitstream in the cache that maches the RTL hash computed by Nix.
113+ # Check if there's a bitstream in the cache that matches the RTL hash computed by Nix.
114114 - name : Check bitstream cache
115115 run : |
116116 BITSTREAM_HASH=$(nix eval .#filesets.x86_64-linux.bitstreamDependancies.outPath --raw \
@@ -128,7 +128,7 @@ jobs:
128128 # Only runs if the bitstream does not exist (not found in cache).
129129 - name : Build bitstream
130130 id : build_bitstream
131- if : env.file_exists == 'false'
131+ if : env.file_exists == 'false'
132132 run : |
133133 module load xilinx/vivado
134134 nix run .#bitstream-build
@@ -148,9 +148,9 @@ jobs:
148148 ${{ env.TIMING_RPT }}
149149 ${{ env.UTILIZATION_RPT }}
150150
151- # Only upload the bistream if this is not a pull-request and the build bistream step ran.
151+ # Only upload the bitstream if this is not a pull-request and the build bitstream step ran.
152152 - name : Upload bitstream to the cache
153- if : github.event_name != 'pull_request' && env.file_exists == 'false'
153+ if : github.event_name != 'pull_request' && env.file_exists == 'false'
154154 run : |
155155 BITSTREAM_HASH=$(nix eval .#filesets.x86_64-linux.bitstreamDependancies.outPath --raw \
156156 | cut -d '/' -f4 | cut -d '-' -f1)
0 commit comments