passed through slocontrol locable and hidden to add #3
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: C/C++ CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| jobs: | |
| build_rocky-9: | |
| runs-on: ubuntu-latest | |
| container: 'tooldaq/core' | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: setup | |
| run: cp -R `pwd` /opt | |
| && cd /opt | |
| && ls | |
| && cd ToolFrameworkCore | |
| && make clean | |
| && git pull | |
| && make -j `nproc --all` | |
| && cd ../ToolDAQFramework | |
| && cd /opt/ToolDAQFramework | |
| && make clean | |
| && make -j `nproc --all` | |
| - name: make | |
| run: cd /opt/libDAQInterface | |
| && ln -s /opt Dependencies | |
| && make clean | |
| && make -j `nproc --all` | |
| # - name: test | |
| # run: cd /opt/libDAQInterface | |
| # && source Setup.sh | |
| # && ./main | |