Fixed influxdb importer so it can now take profiles from the optimizer. #1295
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: Build-Test-Lint-etc (linux) | |
| on: [push] | |
| jobs: | |
| setup: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11"] | |
| name: Setup | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Cache dependencies | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/pip | |
| key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pip- | |
| - run: | | |
| ./ci/linux/create_venv.sh | |
| ./ci/linux/install_dev.sh | |
| - name: 'Tar venv' | |
| run: tar -cvf venv.tar ./.venv/ | |
| - name: Save venv | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: ./venv.tar | |
| name: ${{ runner.os }}-python-${{ matrix.python-version }}-venv-${{github.run_id}} | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| needs: [ setup ] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Restore venv | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: ${{ runner.os }}-python-${{ matrix.python-version }}-venv-${{github.run_id}} | |
| - name: Untar venv | |
| run: tar -xvf venv.tar | |
| - name: Run lint | |
| run: | | |
| ./ci/linux/lint.sh | |
| formatting: | |
| name: Check on formatting | |
| runs-on: ubuntu-latest | |
| needs: [ setup ] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Restore venv | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: ${{ runner.os }}-python-${{ matrix.python-version }}-venv-${{github.run_id}} | |
| - name: Untar venv | |
| run: tar -xvf venv.tar | |
| - name: Run check on formatting | |
| run: | | |
| ./ci/linux/check_formatting.sh | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| needs: [ setup ] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| lfs: 'true' | |
| - name: Restore venv | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: ${{ runner.os }}-python-${{ matrix.python-version }}-venv-${{github.run_id}} | |
| - name: Untar venv | |
| run: tar -xvf venv.tar | |
| - name: Run unit tests | |
| run: | | |
| ./ci/linux/test_unit.sh | |
| - name: Surface failing tests | |
| if: always() | |
| uses: pmeier/pytest-results-action@main | |
| with: | |
| # A list of JUnit XML files, directories containing the former, and wildcard | |
| # patterns to process. | |
| # See @actions/glob for supported patterns. | |
| path: test-results.xml | |
| # Add a summary of the results at the top of the report | |
| # Default: true | |
| summary: true | |
| # Select which results should be included in the report. | |
| # Follows the same syntax as | |
| # `pytest -r` | |
| # Default: fEX | |
| display-options: fEX | |
| # Fail the workflow if no JUnit XML was found. | |
| # Default: true | |
| fail-on-empty: true | |
| typecheck: | |
| name: Typecheck | |
| runs-on: ubuntu-latest | |
| needs: [ setup ] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.11"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Restore venv | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: ${{ runner.os }}-python-${{ matrix.python-version }}-venv-${{github.run_id}} | |
| - name: Untar venv | |
| run: tar -xvf venv.tar | |
| - name: Add mypy annotator | |
| uses: pr-annotators/mypy-pr-annotator@v1.0.0 | |
| - name: Run typechecker | |
| run: | | |
| ./ci/linux/typecheck.sh | |
| build: | |
| name: Build the python package | |
| runs-on: ubuntu-latest | |
| needs: [ setup ] | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: [ "3.11" ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Restore venv | |
| uses: actions/download-artifact@v4 | |
| with: | |
| name: ${{ runner.os }}-python-${{ matrix.python-version }}-venv-${{github.run_id}} | |
| - name: Untar venv | |
| run: tar -xvf venv.tar | |
| - name: Build | |
| run: | | |
| ./ci/linux/build_python_package.sh |