PR Profiling: Add link for diff of IB and PR Vtune reports and add script to generate page with the diff of IB and PR sorted-CPU-RES reports #11019
Workflow file for this run
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: test-changes | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [ '3.x' ] | |
| name: Python ${{ matrix.python-version }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| architecture: x64 | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install PyYaml | |
| - name: Checking python version | |
| run: python -c "import sys; print(sys.version)" | |
| - name: Compiling all python files | |
| run: python -m compileall $(ls | grep -v cuda | grep -v v_scheduler | grep -v venv) | |
| - name: Test importing CMSSW_L2/L1 | |
| run: python -c 'from categories import CMSSW_L2,CMSSW_ORP' | |
| - name: Checking watchers | |
| run: PYTHONPATH=. python tests/test_watchers.py | |
| - name: Checking config map | |
| run: PYTHONPATH=. python tests/test_config-map.py |