From 22318eb80eb0dd8155cdf06774650e50f587bcda Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 29 Oct 2024 18:14:53 +0100 Subject: [PATCH 1/3] chore: fix bad usage of variables --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 969d1cea2..320a4a349 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -420,7 +420,7 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/pip - key: test-${{ matrix.os }}-${{ matrix.python-version }}-pip + key: test-linux-online-pip - name: TA binary *nix if: steps.cache.outputs.cache-hit != 'true' From 04e8c3ceea222b5a720afa2c1e68a9494b9942e6 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 29 Oct 2024 19:31:08 +0100 Subject: [PATCH 2/3] chore: try improve caching --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 320a4a349..e9efeb21d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/pip - key: test-${{ matrix.os }}-${{ matrix.python-version }}-pip + key: pip-${{ matrix.python-version }}-ubuntu - name: TA binary *nix if: steps.cache.outputs.cache-hit != 'true' @@ -167,7 +167,7 @@ jobs: uses: actions/cache@v4 with: path: ~/Library/Caches/pip - key: ${{ matrix.os }}-${{ matrix.python-version }}-pip + key: pip-${{ matrix.os }}-${{ matrix.python-version }} - name: TA binary *nix if: steps.cache.outputs.cache-hit != 'true' @@ -280,7 +280,7 @@ jobs: uses: actions/cache@v4 with: path: ~\AppData\Local\pip\Cache - key: ${{ matrix.os }}-${{ matrix.python-version }}-pip + key: pip-${{ matrix.os }}-${{ matrix.python-version }} - name: Installation run: | @@ -420,7 +420,7 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/pip - key: test-linux-online-pip + key: pip-linux-online - name: TA binary *nix if: steps.cache.outputs.cache-hit != 'true' From e99adc339e173ae99575da7e54df97db0927f0c3 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 30 Oct 2024 15:55:50 +0100 Subject: [PATCH 3/3] chore: re-use 3.12 cache for online tests --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e9efeb21d..1593c43af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -420,7 +420,7 @@ jobs: uses: actions/cache@v4 with: path: ~/.cache/pip - key: pip-linux-online + key: pip-3.12-ubuntu - name: TA binary *nix if: steps.cache.outputs.cache-hit != 'true'