Skip to content

Commit

Permalink
Change directory we build in
Browse files Browse the repository at this point in the history
  • Loading branch information
swenson committed Nov 25, 2024
1 parent b97fd12 commit 6e4b8ee
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/compliance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pwd
- run: echo $HOME
- name: Install dependencies
run: |
sudo apt update && \
Expand All @@ -37,14 +35,15 @@ jobs:
../configure --prefix=/usr && \
make -j$(nproc) && \
sudo make install && \
cd && \
cd ../.. && \
opam init -a -y
opam install -y sail
export PATH="$PATH:/root/.opam/default/bin"
git clone https://github.com/riscv/sail-riscv.git && \
cd sail-riscv && \
make c_emulator/riscv_sim_RV32 ARCH=32 -j$(nproc) && \
sudo cp -r c_emulator/riscv_sim_RV32 /usr/bin
sudo cp -r c_emulator/riscv_sim_RV32 /usr/bin && \
cd ..
- name: Install Rust tools
run: rustup update
- name: Checkout RISC-V tests
Expand Down

0 comments on commit 6e4b8ee

Please sign in to comment.