-
Notifications
You must be signed in to change notification settings - Fork 8
114 lines (99 loc) · 3.19 KB
/
build_spike.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Build Spike
on:
schedule:
# 6am UTC is 7am Central European Time (CET) or 8am Central European Summer Time (CEST).
- cron: '0 7 * * SAT'
workflow_dispatch:
jobs:
Build_Spike:
runs-on: ubuntu-22.04
strategy:
matrix:
spike_ref:
- master
pk_ref:
- 1a52fa44aba49307137ea2ad5263613da33a877b
steps:
- uses: actions/checkout@v4
- name: Get current date
id: date
run: echo "today=$(date +'%Y-%m-%d')" > $GITHUB_OUTPUT
- name: Download Cached GCC Binaries
id: cache-gcc
uses: actions/cache@v4
env:
cache-name: cache-gcc-binaries
with:
path: ./Toolchain
fail-on-cache-miss: true
key: gcc-binaries-${{ steps.date.outputs.date }}
restore-keys: |
gcc-binaries-
- name: Setup Spike Cache
id: cache-Spike
uses: actions/cache@v4
env:
cache-name: cache-spike-binaries
with:
path: ./Sim/Spike/bin
key: spike-binaries-${{ steps.date.outputs.date }}
- name: Install BOOST
run: |
sudo apt-get install libboost-all-dev
ls /usr/lib/x86_64-linux-gnu | grep regex
- name: Clone Spike Repo
working-directory: ./Sim/Spike
run: |
git clone https://github.com/riscv-software-src/riscv-isa-sim.git
git -C riscv-isa-sim checkout ${{ matrix.spike_ref }}
- name: Build Spike
working-directory: ./Sim/Spike/riscv-isa-sim
run: |
export RISCV=/home/runner/work/muriscv-nn/muriscv-nn/Toolchain/rv32gcv
export PATH=$PATH:$RISCV/bin
echo $PATH
sudo apt-get install device-tree-compiler
mkdir build
cd build
../configure --prefix=$RISCV
make -j$(nproc)
sudo make install
- name: Clone PK Repo
working-directory: ./Sim/Spike
run: |
git clone https://github.com/riscv-software-src/riscv-pk.git
git -C riscv-pk checkout ${{ matrix.pk_ref }}
- name: Build PK for ilp32d
working-directory: ./Sim/Spike/riscv-pk
run: |
export RISCV=/home/runner/work/muriscv-nn/muriscv-nn/Toolchain/rv32gcv
export PATH=$PATH:$RISCV/bin
echo $PATH
mkdir build
cd build
../configure --prefix=$RISCV --host=riscv32-unknown-elf --with-arch=rv32gcv_zicsr_zifencei --with-abi=ilp32d
make -j$(nproc)
sudo make install
- name: Copy Spike and PK binaries to correct location
working-directory: ./Sim/Spike/bin
run: |
cp ../riscv-isa-sim/build/spike spike
cp ../riscv-pk/build/pk pk_ilp32d
ls
- name: Build PK for ilp32
working-directory: ./Sim/Spike/riscv-pk
run: |
rm -r build
export RISCV=/home/runner/work/muriscv-nn/muriscv-nn/Toolchain/rv32imv
export PATH=$PATH:$RISCV/bin
echo $PATH
mkdir build
cd build
../configure --prefix=$RISCV --host=riscv32-unknown-elf --with-arch=rv32imv_zicsr_zifencei --with-abi=ilp32
make -j$(nproc)
sudo make install
- name: PK Binary to correct location
working-directory: ./Sim/Spike/bin
run: |
cp ../riscv-pk/build/pk pk_ilp32
ls