Skip to content

Commit 9bf7442

Browse files
authored
Wait publishing to pypi test (#17843)
* Wait publishing to pypi test * Fix CI pip cache restore warning * Fix homebrew formula warning
1 parent 1ac69d3 commit 9bf7442

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/linux-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
uses: actions/cache@v4
119119
with:
120120
path: ~/.cache/pip
121-
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements*.txt') }}
121+
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements_runner*.txt') }}
122122

123123
- name: Install dependencies
124124
run: |

.github/workflows/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ jobs:
9090
runs-on: ubuntu-latest
9191
name: Deploy to TestPyPI
9292
if: github.ref == 'refs/heads/develop2'
93+
needs: [linux_suite, osx_suite, windows_suite]
9394
steps:
9495
- name: Checkout code
9596
uses: actions/checkout@v4

.github/workflows/osx-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
pip install meson
3737
3838
- name: Uninstall default CMake
39-
run: brew uninstall cmake || true
39+
run: brew uninstall --formula cmake || true
4040

4141
- name: Cache Homebrew packages
4242
id: cache-brew

0 commit comments

Comments
 (0)