From 6b2824dae1f485e8640629a50be1d6ab77a02971 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 27 Sep 2024 00:46:26 +0200 Subject: [PATCH] GHA/torture: prefer pip `--break-system-packages` for speed Follow-up to c5e3d8ba94791dbc51f98a56ce07b3ba6b0aa446 #14972 Closes #15071 --- .github/workflows/torture.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/torture.yml b/.github/workflows/torture.yml index ae6a318635..2765d4631a 100644 --- a/.github/workflows/torture.yml +++ b/.github/workflows/torture.yml @@ -61,9 +61,7 @@ jobs: steps: - run: | sudo apt-get install cmake ninja-build pkgconf stunnel4 ${{ matrix.build.install }} - python3 -m venv $HOME/venv - source $HOME/venv/bin/activate - python3 -m pip install impacket + python3 -m pip install --break-system-packages impacket name: 'install prereqs' - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 @@ -83,9 +81,7 @@ jobs: - run: cmake --build . --verbose --target testdeps name: 'build tests' - - run: | - source $HOME/venv/bin/activate - cmake --build . --verbose --target test-torture + - run: cmake --build . --verbose --target test-torture name: 'run tests' env: TFLAGS: '-j10 ${{ matrix.build.tflags }}' -- 2.47.3