Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: implement automated testing workflow using TL-test-new #15

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
84 changes: 84 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@
# This file describes the GitHub Actions workflow for continuous integration of OpenLLC

name: CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
pull_request:
branches: [ master ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
tl-test_L2L3L2:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Environments
env:
RUN_ARCHIVE: openLLC-tl-test-new-run-${{ github.sha }}.tar.gz

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Setup Clang 17
run: |
wget https://apt.llvm.org/llvm.sh
chmod u+x llvm.sh
sudo ./llvm.sh 17

- name: Setup Verilator
run: |
wget https://raw.githubusercontent.com/OpenXiangShan/xs-env/master/install-verilator.sh
chmod u+x install-verilator.sh
sed -i 's/CC=clang/CC=clang-17/g' install-verilator.sh
sed -i 's/CXX=clang++/CXX=clang++-17/g' install-verilator.sh
sed -i 's/LINK=clang++/LINK=clang++-17/g' install-verilator.sh
sed -i 's/make -j8/make -j4/g' install-verilator.sh
bash install-verilator.sh

- name: Setup Scala
uses: olafurpg/setup-scala@v10

- name: Cache
id: cache
uses: coursier/cache-action@v5

- name: Setup Mill
uses: jodersky/[email protected]
with:
mill-version: 0.11.1

- name: Compile
run: make compile

# Clean artifacts folder (./tl-test-new/run) after successful run
- name: Unit Test
run: |
git clone https://github.com/OpenXiangShan/tl-test-new
cd ./tl-test-new
sed -i 's/ari.target.*/ari.target = 240/g' ./configs/user.tltest.ini
rm -rf ./dut/OpenLLC && ln -s ../.. ./dut/OpenLLC
make openLLC-test-l2l3l2 run THREADS_BUILD=4 CXX_COMPILER=clang++-17
rm -rf run/*.vcd run/*.fst run/*.log run/*.db

- name: Tar up artifacts of Unit Test
run: |
test -d ./tl-test-new/run || mkdir -p ./tl-test-new/run
tar -zcf ${{ env.RUN_ARCHIVE }} ./tl-test-new/run

- name: Upload artifacts of Unit Test
uses: actions/upload-artifact@v4
with:
path: ${{ github.workspace }}/${{ env.RUN_ARCHIVE }}
name: ${{ env.RUN_ARCHIVE }}
Loading