Skip to content

Commit

Permalink
Disable JTAG tests due to CI environment
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnbastiaan committed Mar 7, 2024
1 parent 44c69d1 commit 3bd03de
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,10 @@ jobs:
with:
name: vexriscv-test-binaries

- name: Work around dubious owner error
run: |
git config --global --add safe.directory "$(pwd)"
- name: Extract VexRiscv Integration Tests
run: |
tar -x -f vexriscv-test-binaries.tar
Expand Down
4 changes: 2 additions & 2 deletions clash-vexriscv-sim/tests/tests.hs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import Clash.Prelude

import qualified Data.ByteString as BS
import qualified Data.List as L
import qualified Tests.Jtag as Jtag

import Control.Monad (forM)
import Data.Maybe (catMaybes, mapMaybe)
Expand Down Expand Up @@ -130,7 +129,8 @@ main = do
"VexRiscv Tests"
[ testGroup "Debug builds" debugTestCases
, testGroup "Release builds" releaseTestCases
, Jtag.tests
-- XXX: Disabled, we need to add OpenOCD + GDB to CI (or use the Nix shell?)
-- , Jtag.tests
]

defaultMain tests

0 comments on commit 3bd03de

Please sign in to comment.