Skip to content

Commit

Permalink
[ci] fix for wrong command line argument
Browse files Browse the repository at this point in the history
Signed-off-by: Avimitin <[email protected]>
  • Loading branch information
Avimitin committed Jul 31, 2024
1 parent cb7cfcb commit 9b04103
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/vcs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,5 @@ jobs:
ref: ${{ github.head_ref }}
- name: "Print step summary"
run: |
nix run ".#ci-helper" -- postCI --failed-tests-file-path ./failed-tests.md --emuType vcs
nix run ".#ci-helper" -- postCI --failed-tests-file-path ./failed-tests.md --emu-type vcs
cat ./failed-tests.md >> $GITHUB_STEP_SUMMARY
6 changes: 6 additions & 0 deletions tests/make-emu-result.nix
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,17 @@ let
postCheck = ''
set +e
echo "[nix] Checking VCS event log"
"${verilator-emu}/bin/offline" \
--elf-file ${testCase}/bin/${testCase.pname}.elf \
--log-file $rtlEventOutPath \
--log-level ERROR &> $out/offline-check-journal
printf "$?" > $out/offline-check-status
if [ "$(cat $out/offline-check-status)" == "0" ]; then
echo "[nix] VCS difftest PASS"
else
echo "[nix] VCS difftest FAIL"
fi
set -e
'';
Expand Down

0 comments on commit 9b04103

Please sign in to comment.