Make apt-get update in github workflow. #3779
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 | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| test-ubuntu: | |
| name: "pytest_${{ matrix.suffix }} on ${{ matrix.python-version }} on ubuntu-latest" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.12"] # 3.x disabled b/c of 3.13 test failures w/ JAX. | |
| suffix: ["core", "algorithms", "clients", "pyglove", "raytune"] # "benchmarks" disabled b/c of Tensorflow-protobuf conflicts. | |
| include: | |
| - suffix: "clients" | |
| python-version: "3.8" | |
| - suffix: "clients" | |
| python-version: "3.9" | |
| - suffix: "clients" | |
| python-version: "3.10" | |
| - suffix: "clients" | |
| python-version: "3.11" | |
| steps: | |
| - name: Clone repo | |
| uses: actions/[email protected] | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| # Cache pip packages. | |
| python-version: ${{ matrix.python-version }} | |
| cache: 'pip' | |
| cache-dependency-path: '**/requirements.txt' | |
| - name: Cache dependencies (for faster installation) | |
| # This was taken from: https://github.com/actions/setup-python/issues/330#issuecomment-1500667578 | |
| uses: actions/cache@v4 | |
| id: cache | |
| with: | |
| path: ${{ env.pythonLocation }} | |
| key: >- | |
| ${{ env.pythonLocation }} | |
| ${{ hashFiles('**/requirements*.txt') }} | |
| # NOTE: grpcio-tools needs to be periodically updated to support later Python versions. | |
| - name: Install essential dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y libprotobuf-dev | |
| python -m pip install --upgrade pip setuptools | |
| pip install wheel | |
| pip install grpcio-tools>=1.70.0 | |
| pip install pytest pytest-xdist | |
| pip wheel -e . | |
| pip install -e . | |
| pip install -r requirements-test.txt | |
| - name: Print installed dependencies | |
| run: pip list | |
| - name: Install test-specific dependencies and run test | |
| # TODO: Split install and run. | |
| run: bash run_tests.sh ${{ matrix.suffix }} |