30 lines
1.0 KiB
YAML
30 lines
1.0 KiB
YAML
|
|
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
|
|
- name: Update APT cache
|
|
run: sudo apt-get update
|
|
- name: Install software dependencies
|
|
run: >
|
|
sudo apt-get install libboost-all-dev rapidjson-dev \
|
|
qtbase5-dev qtbase5-dev-tools libqt5svg5-dev libqwt-qt5-dev \
|
|
libeigen3-dev liblemon-dev
|
|
- name: Build Coriolis
|
|
run: ${{ github.workspace }}/coriolis-2.x/src/coriolis/bootstrap/ccb.py --root=${{ github.workspace }}/coriolis-2.x --project=coriolis --make="-j4 install"
|