coriolis/.github/workflows/regression.yml

83 lines
3.5 KiB
YAML
Raw Normal View History

2023-08-04 05:34:38 -05:00
name: Regression tests
on: [workflow_dispatch]
jobs:
Regression-Tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
path: coriolis-2.x/src/coriolis
- uses: actions/checkout@v3
with:
repository: lip6/alliance
path: coriolis-2.x/src/alliance
- uses: actions/checkout@v3
with:
repository: lip6/alliance-check-toolkit
path: coriolis-2.x/src/alliance-check-toolkit
2023-08-04 10:59:24 -05:00
- uses: actions/checkout@v3
with:
repository: YosysHQ/yosys
path: coriolis-2.x/src/yosys
ref: yosys-0.24
2023-08-04 07:41:20 -05:00
- name: Update APT cache
run: sudo apt-get update
2023-08-04 05:34:38 -05:00
- name: Install software dependencies
2023-08-04 07:41:20 -05:00
run: >
2023-08-04 08:17:03 -05:00
sudo apt-get install libboost-all-dev rapidjson-dev \
2023-08-04 17:44:23 -05:00
python-dev-is-python3 python3-doit \
2023-08-04 08:17:03 -05:00
qtbase5-dev qtbase5-dev-tools libqt5svg5-dev libqwt-qt5-dev \
libeigen3-dev liblemon-dev \
autotools-dev automake \
2023-08-04 10:59:24 -05:00
libxt-dev libxpm-dev libmotif-dev \
tcl-dev libffi-dev
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
2023-08-04 10:59:24 -05:00
- name: Build Yosys
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
2023-08-04 10:59:24 -05:00
cd ${{ github.workspace }}/coriolis-2.x/src/yosys
make ENABLE_PYOSYS=1 config-gcc
# sudo make ENABLE_PYOSYS=1 PREFIX=/usr install
make ENABLE_PYOSYS=1 PREFIX=/install \
PYTHON_DESTDIR=/install/lib64/python3/dist-packages \
DESTDIR=${{ github.workspace }}/coriolis-2.x/Linux.x86_64/Release.Shared \
LIBDIR=/install/lib64/yosys \
install
- name: Build Alliance
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
${{ github.workspace }}/coriolis-2.x/src/coriolis/bootstrap/allianceInstaller.sh --github-runner=${{ github.workspace }}
2023-08-04 05:34:38 -05:00
- name: Build Coriolis
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
${{ github.workspace }}/coriolis-2.x/src/coriolis/bootstrap/ccb.py --root=${{ github.workspace }}/coriolis-2.x --project=coriolis --make="-j4 install"
2023-08-04 16:34:10 -05:00
- name: Check for binaries
run: ls -1 ${{ github.workspace }}/coriolis-2.x/Linux.x86_64/Release.Shared/install/bin
- name: Run the reference set of designs
run: |
export CORIOLIS_TOP=${{ github.workspace }}/coriolis-2.x/Linux.x86_64/Release.Shared/install
2023-08-04 16:44:18 -05:00
cd ${{ github.workspace }}/coriolis-2.x/src/alliance-check-toolkit/benchs
../bin/crlenv.py --verbose
../bin/gopy.sh --github-runner
# - name: Bundle installed tree
# uses: actions/upload-artifact@v3
# with:
# name: installed-tree
# path: ${{ github.workspace }}/coriolis-2.x/Linux.x86_64/Release.Shared/install
# retention-days: 1
- name: Archive test design set logs
uses: actions/upload-artifact@v3
with:
name: design-set-full-logs
path: ${{ github.workspace }}/coriolis-2.x/src/alliance-check-toolkit/benchs/doit-gopy.log
retention-days: 5
- name: Make the runner fail *after* the log has been saved.
run: |
if [ -f ${{ github.workspace }}/coriolis-2.x/src/alliance-check-toolkit/benchs/doit-gopy.failed ]; then
2023-08-04 17:31:54 -05:00
exit 1
fi