Merge pull request #430 from GSI-CS-CO/fallout_fbas_multi_mps_channels #59
This file contains hidden or 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: CI Timing Projects | |
| on: | |
| push: | |
| branches: | |
| - "master" | |
| - "proposed_master" | |
| - "github-actions-development" | |
| pull_request: | |
| branches: | |
| - "master" | |
| - "proposed_master" | |
| - "github-actions-development" | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-24.04, ubuntu-22.04] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Update | |
| run: sudo apt-get update | |
| - name: Install missing packages | |
| run: sudo apt-get -y install automake libreadline-dev build-essential libboost-all-dev docbook-utils pkg-config libsigc++-2.0-dev --fix-missing | |
| - name: Set PKG_CONFIG_PATH | |
| run: export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig | |
| - name: Create symlinks | |
| run: sudo ln -s /usr/lib/x86_64-linux-gnu/libmpfr.so.6 /usr/lib/x86_64-linux-gnu/libmpfr.so.4 | |
| - name: Setup repository | |
| run: make | |
| - name: Build etherbone | |
| run: make etherbone | |
| - name: Install etherbone | |
| run: sudo make etherbone-install | |
| - name: Build saftlib | |
| run: make saftlib -j$(nproc) | |
| - name: Install saftlib | |
| run: sudo make saftlib-install | |
| - name: Build timing projects | |
| run: make test_run_all |