-
Notifications
You must be signed in to change notification settings - Fork 8
102 lines (86 loc) · 2.85 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
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-20.04
steps:
- uses: actions/checkout@v3
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Download Cached GCC Binaries
id: cache-gcc
uses: actions/cache@v3
env:
cache-name: cache-gcc-binaries
with:
path: ./Toolchain
key: gcc-binaries-${{ steps.date.outputs.date }}
restore-keys: |
gcc-binaries-
- name: Setup Spike Cache
id: cache-Spike
uses: actions/cache@v3
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
- name: Clone Spike Repo
working-directory: ./Sim/Spike
run: git clone https://github.com/riscv-software-src/riscv-isa-sim.git
- 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
sudo make install
- name: Clone PK Repo
working-directory: ./Sim/Spike
run: git clone https://github.com/riscv-software-src/riscv-pk.git
- 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 --with-abi=ilp32d
make
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 --with-abi=ilp32
make
sudo make install
- name: PK Binary to correct location
working-directory: ./Sim/Spike/bin
run: |
cp ../riscv-pk/build/pk pk_ilp32
ls