ci: fix and speedup jmeter download

This commit is contained in:
Ivan Dyachkov 2023-07-13 09:26:16 +02:00
parent fef5087c41
commit d450d34ab3
1 changed files with 8 additions and 1 deletions

View File

@ -17,8 +17,15 @@ jobs:
- uses: erlef/setup-beam@v1.15.4 - uses: erlef/setup-beam@v1.15.4
with: with:
otp-version: 25.3.2 otp-version: 25.3.2
- name: Cache Jmeter
id: cache-jmeter
uses: actions/cache@v3
with:
path: /tmp/apache-jmeter.tgz
key: apache-jmeter-5.4.3.tgz
- name: download jmeter - name: download jmeter
timeout-minutes: 3 if: steps.cache-jmeter.outputs.cache-hit != 'true'
timeout-minutes: 15
env: env:
JMETER_VERSION: 5.4.3 JMETER_VERSION: 5.4.3
run: | run: |