kopia lustrzana https://github.com/jupyterhub/repo2docker
ci: stop populating pip cache in a pre-requisite test job
rodzic
8a28264b97
commit
ea1fbcd440
|
@ -39,47 +39,7 @@ env:
|
||||||
GIT_AUTHOR_NAME: CI User
|
GIT_AUTHOR_NAME: CI User
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
populate-pip-cache:
|
|
||||||
runs-on: ubuntu-22.04
|
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
python_version: ["3.9"]
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: actions/setup-python@v4
|
|
||||||
with:
|
|
||||||
python-version: "${{ matrix.python_version }}"
|
|
||||||
|
|
||||||
# There will almost never be a cache hit on the cache key when this job is
|
|
||||||
# run, as it is the first of all jobs in this workflow. The subsequent
|
|
||||||
# jobs in this workflow can rely on this cache though.
|
|
||||||
- name: Save pip's install cache on job completion
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ~/.cache/pip
|
|
||||||
key: "${{ github.run_id }}-${{ matrix.python_version }}"
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
pip install -r dev-requirements.txt
|
|
||||||
|
|
||||||
# add for mercurial tests
|
|
||||||
pip install mercurial hg-evolve
|
|
||||||
|
|
||||||
pip freeze
|
|
||||||
|
|
||||||
- name: Install repo2docker
|
|
||||||
run: |
|
|
||||||
python -m build --wheel .
|
|
||||||
pip install dist/*.whl
|
|
||||||
|
|
||||||
pip freeze
|
|
||||||
|
|
||||||
test:
|
test:
|
||||||
needs: populate-pip-cache
|
|
||||||
runs-on: ubuntu-${{ matrix.ubuntu_version }}
|
runs-on: ubuntu-${{ matrix.ubuntu_version }}
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
|
@ -112,12 +72,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
python-version: "${{ matrix.python_version }}"
|
python-version: "${{ matrix.python_version }}"
|
||||||
|
|
||||||
- name: Restore pip's install cache from previous job
|
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
|
||||||
path: ~/.cache/pip
|
|
||||||
key: "${{ github.run_id }}-${{ matrix.python_version }}"
|
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
pip install -r dev-requirements.txt
|
pip install -r dev-requirements.txt
|
||||||
|
|
Ładowanie…
Reference in New Issue