Skip to content

Commit

Permalink
ci: add optional metrics installation into the GitHub workflow
Browse files Browse the repository at this point in the history
Closes #100
  • Loading branch information
oleg-jukovec committed Jun 20, 2022
1 parent d410ab4 commit 6c088b0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/fast_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
- '2.6'
- '2.7'
- '2.8'
metrics-version:
- ''
- '0.10.0'
- '0.11.0'
- '0.13.0'
coveralls: [false]
include:
- tarantool: '2.8'
Expand All @@ -50,6 +55,10 @@ jobs:
run: make deps
if: steps.cache-rocks.outputs.cache-hit != 'true'

- name: Install metrics
if: matrix.metrics-version != ''
run: tarantoolctl rocks install metrics ${{ matrix.metrics-version }}

- run: echo $PWD/.rocks/bin >> $GITHUB_PATH

- run: make check
Expand Down

0 comments on commit 6c088b0

Please sign in to comment.