Maximize disk #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Chipyard Megaboom Benchmark | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
install-chipyard: | |
name: Install Chipyard | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/antmicro/megaboom-cpu-benchmarking:latest | |
defaults: | |
run: | |
shell: bash | |
env: | |
DEBIAN_FRONTEND: "noninteractive" | |
steps: | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@master | |
with: | |
root-reserve-mb: 512 | |
swap-size-mb: 1024 | |
remove-dotnet: 'true' | |
remove-android: 'true' | |
remove-haskell: 'true' | |
remove-codeql: 'true' | |
remove-docker-images: 'true' | |
- name: install chipyard | |
id: install_chipyard | |
run: | | |
git clone https://github.com/ucb-bar/chipyard.git | |
pushd chipyard | |
git checkout 1.11.0 | |
./build-setup.sh riscv-tools -s 3 -s 4 -s 5 -s 6 -s 7 -s 8 -s 9 -s 10 | |
popd | |
tar -czf chipyard.tar.gz chipyard/ | |
- name: upload artifact | |
id: upload_artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: chipyard.tar.gz | |
path: ./ | |
binary-tests: | |
name: Binary test | |
needs: install-chipyard | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/antmicro/megaboom-cpu-benchmarking:latest | |
volumes: | |
- /usr/share/dotnet:/usr/share/dotnet | |
- /usr/local/lib/android:/usr/local/lib/android | |
- /opt/ghc:/opt/ghc | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
fail-fast: false | |
matrix: | |
CONFIG: ["RocketConfig", "MegaBoomConfig"] | |
BINARY: ["../../tests/hello.riscv", "../../software/coremark/riscv-coremark/coremark.bare.riscv"] | |
env: | |
DEBIAN_FRONTEND: "noninteractive" | |
steps: | |
- name: Increase build space | |
run: | | |
echo "Before cleanup" | |
df -H | |
rm -rf /usr/share/dotnet/* | |
rm -rf /usr/local/lib/android/* | |
rm -rf /opt/ghc/* | |
echo "After cleanup" | |
df -H | |
- name: Download artifact | |
uses: actions/download-artifact@v3 | |
with: | |
name: chipyard.tar.gz | |
path: ./ | |
- name: Unpack artifact | |
run: | | |
tar -xf chipyard.tar.gz chipyard/ | |
- name: Coremark | |
run: | | |
pushd chipyard | |
source env.sh | |
git submodule update --init --recursive software/coremark | |
pushd software/coremark | |
./build.sh | |
popd | |
popd | |
- name: Binary test | |
id: binary_test | |
run: | | |
pushd chipyard | |
source env.sh | |
pushd sims/verilator | |
make run-binary CONFIG=${CONFIG} BINARY=${BINARY} | |
popd | |
popd | |