This is an automated email from the ASF dual-hosted git repository.
husseinawala pushed a commit to branch v2-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v2-10-test by this push:
new a17307de3a6 Protect against missing .uv cache (#45605)
a17307de3a6 is described below
commit a17307de3a6db7f3081fda26c7ddf9330668b7bc
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Jan 13 09:01:47 2025 +0100
Protect against missing .uv cache (#45605)
---
.github/workflows/ci-image-checks.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.github/workflows/ci-image-checks.yml
b/.github/workflows/ci-image-checks.yml
index 06edff1101f..b49fb3995bd 100644
--- a/.github/workflows/ci-image-checks.yml
+++ b/.github/workflows/ci-image-checks.yml
@@ -142,6 +142,7 @@ jobs:
if: inputs.canary-run == 'true'
- name: "Prepare .tar file from pre-commit cache"
run: |
+ mkdir -p ~/.cache/uv # until we are Python 3.9+ we do not have .uv
in pre-commits
tar -C ~ -czf /tmp/cache-pre-commit.tar.gz .cache/pre-commit
.cache/uv
shell: bash
if: inputs.canary-run == 'true'