Skip to content

Commit

Permalink
Add debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
satnam6502 committed Jun 4, 2024
1 parent 07bad0c commit 9ea5743
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/lava-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,30 @@ jobs:
allow-failure: false
fail-fast: false
steps:
- name: Attempt for restore GHC compiler from cache.
- name: Attempt to restore GHC compiler from cache.
uses: actions/cache/restore@v4
with:
key: ${{ runner.os }}-${{ matrix.compiler }}
path: ~/.ghcup/bin
- name: Install GHC, cabal and verilator.
run: |
echo "HOME = " $HOME
echo "github.workspace = " ${{ github.workspace }}
echo "GITHUB_WORKSPACE = " $GITHUB_WORKSPACE
ls -a ~
export GHCUP_INSTALL_BASE_PREFIX=$HOME
export PATH=$HOME/.ghcup/bin:$PATH
mkdir -p "$HOME/.ghcup/bin"
sudo chmod a+x "$HOME/.ghcup/bin/ghcup"
ghcup install ghc ${{ matrix.compilerVersion }}
ghcup set ghc ${{ matrix.compilerVersion }}
ghc --version
ghcup install cabal 3.10.3.0
cabal init
cabal v2-update
sudo apt-get update
sudo apt-get install -y verilator
verilator --version
- name: Cache GHC compiler.
uses: actions/cache/save@v4
with:
Expand Down

0 comments on commit 9ea5743

Please sign in to comment.