-
Notifications
You must be signed in to change notification settings - Fork 281
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hanran Wu
committed
Aug 23, 2024
1 parent
e7660b6
commit ea9560b
Showing
186 changed files
with
35,981 additions
and
3,986 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,270 @@ | ||
# Copyright © 2019-2023 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
setup: | ||
runs-on: ubuntu-20.04 | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Cache Toolchain Directory | ||
id: cache-toolchain | ||
uses: actions/cache@v2 | ||
with: | ||
path: tools | ||
key: ${{ runner.os }}-toolchain-v0.1 | ||
restore-keys: | | ||
${{ runner.os }}-toolchain- | ||
- name: Cache Third Party Directory | ||
id: cache-thirdparty | ||
uses: actions/cache@v2 | ||
with: | ||
path: third_party | ||
key: ${{ runner.os }}-thirdparty-v0.1 | ||
restore-keys: | | ||
${{ runner.os }}-thirdparty- | ||
- name: Install Dependencies | ||
if: steps.cache-toolchain.outputs.cache-hit != 'true' || steps.cache-thirdparty.outputs.cache-hit != 'true' | ||
run: | | ||
sudo bash ./ci/system_updates.sh | ||
- name: Setup Toolchain | ||
if: steps.cache-toolchain.outputs.cache-hit != 'true' | ||
run: | | ||
TOOLDIR=$PWD/tools | ||
mkdir -p build | ||
cd build | ||
../configure --tooldir=$TOOLDIR | ||
ci/toolchain_install.sh --all | ||
- name: Setup Third Party | ||
if: steps.cache-thirdparty.outputs.cache-hit != 'true' | ||
run: | | ||
make -C third_party > /dev/null | ||
# build: | ||
# runs-on: ubuntu-20.04 | ||
# needs: setup | ||
# strategy: | ||
# matrix: | ||
# xlen: [32, 64] | ||
|
||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v2 | ||
|
||
# - name: Install Dependencies | ||
# run: | | ||
# sudo bash ./ci/system_updates.sh | ||
|
||
# - name: Cache Toolchain Directory | ||
# id: cache-toolchain | ||
# uses: actions/cache@v2 | ||
# with: | ||
# path: tools | ||
# key: ${{ runner.os }}-toolchain-v0.1 | ||
# restore-keys: | | ||
# ${{ runner.os }}-toolchain- | ||
|
||
# - name: Cache Third Party Directory | ||
# id: cache-thirdparty | ||
# uses: actions/cache@v2 | ||
# with: | ||
# path: third_party | ||
# key: ${{ runner.os }}-thirdparty-v0.1 | ||
# restore-keys: | | ||
# ${{ runner.os }}-thirdparty- | ||
|
||
# - name: Run Build | ||
# run: | | ||
# TOOLDIR=$PWD/tools | ||
# mkdir -p build${{ matrix.xlen }} | ||
# cd build${{ matrix.xlen }} | ||
# ../configure --tooldir=$TOOLDIR --xlen=${{ matrix.xlen }} | ||
# source ci/toolchain_env.sh | ||
# make software -s > /dev/null | ||
# make tests -s > /dev/null | ||
|
||
# - name: Upload Build Artifact | ||
# uses: actions/upload-artifact@v2 | ||
# with: | ||
# name: build-${{ matrix.xlen }} | ||
# path: build${{ matrix.xlen }} | ||
|
||
# tests: | ||
# runs-on: ubuntu-20.04 | ||
# needs: build | ||
# strategy: | ||
# matrix: | ||
# name: [regression, opencl, config1, config2, debug, stress] | ||
# xlen: [32, 64] | ||
|
||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v2 | ||
|
||
# - name: Install Dependencies | ||
# run: | | ||
# sudo bash ./ci/system_updates.sh | ||
|
||
# - name: Cache Toolchain Directory | ||
# id: cache-toolchain | ||
# uses: actions/cache@v2 | ||
# with: | ||
# path: tools | ||
# key: ${{ runner.os }}-toolchain-v0.1 | ||
# restore-keys: | | ||
# ${{ runner.os }}-toolchain- | ||
|
||
# - name: Cache Third Party Directory | ||
# id: cache-thirdparty | ||
# uses: actions/cache@v2 | ||
# with: | ||
# path: third_party | ||
# key: ${{ runner.os }}-thirdparty-v0.1 | ||
# restore-keys: | | ||
# ${{ runner.os }}-thirdparty- | ||
|
||
# - name: Download Build Artifact | ||
# uses: actions/download-artifact@v2 | ||
# with: | ||
# name: build-${{ matrix.xlen }} | ||
# path: build${{ matrix.xlen }} | ||
|
||
# - name: Run tests | ||
# run: | | ||
# cd build${{ matrix.xlen }} | ||
# source ci/toolchain_env.sh | ||
# chmod -R +x . # Ensure all files have executable permissions | ||
# if [ "${{ matrix.name }}" == "regression" ]; then | ||
# ./ci/regression.sh --unittest | ||
# ./ci/regression.sh --isa | ||
# ./ci/regression.sh --kernel | ||
# ./ci/regression.sh --synthesis | ||
# ./ci/regression.sh --regression | ||
# else | ||
# ./ci/regression.sh --${{ matrix.name }} | ||
# fi | ||
|
||
build_vm: | ||
runs-on: ubuntu-20.04 | ||
needs: setup | ||
strategy: | ||
matrix: | ||
xlen: [32, 64] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
sudo bash ./ci/system_updates.sh | ||
- name: Cache Toolchain Directory | ||
id: cache-toolchain | ||
uses: actions/cache@v2 | ||
with: | ||
path: tools | ||
key: ${{ runner.os }}-toolchain-v0.1 | ||
restore-keys: | | ||
${{ runner.os }}-toolchain- | ||
- name: Cache Third Party Directory | ||
id: cache-thirdparty | ||
uses: actions/cache@v2 | ||
with: | ||
path: third_party | ||
key: ${{ runner.os }}-thirdparty-v0.1 | ||
restore-keys: | | ||
${{ runner.os }}-thirdparty- | ||
- name: Run Build | ||
run: | | ||
TOOLDIR=$PWD/tools | ||
mkdir -p build${{ matrix.xlen }}-vm | ||
cd build${{ matrix.xlen }}-vm | ||
../configure --tooldir=$TOOLDIR --xlen=${{ matrix.xlen }} --vm_enable=1 | ||
source ci/toolchain_env.sh | ||
make software -s > /dev/null | ||
make tests -s > /dev/null | ||
- name: Upload Build Artifact | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: build-${{ matrix.xlen }}-vm | ||
path: build${{ matrix.xlen }}-vm | ||
|
||
test_vm: | ||
runs-on: ubuntu-20.04 | ||
needs: build_vm | ||
strategy: | ||
matrix: | ||
xlen: [32, 64] | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Dependencies | ||
run: | | ||
sudo bash ./ci/system_updates.sh | ||
- name: Cache Toolchain Directory | ||
id: cache-toolchain | ||
uses: actions/cache@v2 | ||
with: | ||
path: tools | ||
key: ${{ runner.os }}-toolchain-v0.1 | ||
restore-keys: | | ||
${{ runner.os }}-toolchain- | ||
- name: Cache Third Party Directory | ||
id: cache-thirdparty | ||
uses: actions/cache@v2 | ||
with: | ||
path: third_party | ||
key: ${{ runner.os }}-thirdparty-v0.1 | ||
restore-keys: | | ||
${{ runner.os }}-thirdparty- | ||
- name: Download Build Artifact | ||
uses: actions/download-artifact@v2 | ||
with: | ||
name: build-${{ matrix.xlen }}-vm | ||
path: build${{ matrix.xlen }}-vm | ||
|
||
- name: Run tests | ||
run: | | ||
cd build${{ matrix.xlen }}-vm | ||
source ci/toolchain_env.sh | ||
chmod -R +x . # Ensure all files have executable permissions | ||
./ci/regression.sh --vm | ||
complete: | ||
runs-on: ubuntu-20.04 | ||
needs: test_vm | ||
|
||
steps: | ||
- name: Check Completion | ||
run: echo "All matrix jobs passed" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
/build* | ||
/.vscode | ||
*.cache | ||
*.code-workspace |
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
Oops, something went wrong.