Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,14 @@ jobs:
submodules: recursive
fetch-depth: 0
path: kernelci-core
- name: Setup Python with pip cache
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'
cache-dependency-path: kernelci-core/pyproject.toml
- name: Prepare necessary tools
run: |
pip3 install --upgrade pip
cd kernelci-core
python3 -m pip install '.[dev]' --break-system-packages
sudo cp -R config /etc/kernelci/
Expand Down Expand Up @@ -144,9 +149,14 @@ jobs:
ref: ${{ env.USER_GIT_BRANCH }}
fetch-depth: 0
path: kernelci-api
- name: Setup Python with pip cache
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'
cache-dependency-path: kernelci-core/pyproject.toml
- name: Prepare necessary tools
run: |
pip3 install --upgrade pip
cd kernelci-core
python3 -m pip install '.[dev]' --break-system-packages
sudo cp -R config /etc/kernelci/
Expand Down Expand Up @@ -202,4 +212,3 @@ jobs:
DHNAME=$(./kci docker name --prefix=kernelci/staging- ${{ matrix.kcicmd }})
docker tag $NAME $DHNAME
docker push $DHNAME