Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/actions/install-tmt/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Install tmt'
description: 'Install a pinned version of tmt (Test Management Tool)'
runs:
using: 'composite'
steps:
- name: Install tmt
shell: bash
run: |
set -xeuo pipefail
# Pinned because tmt releases have repeatedly regressed reboot
# handling for the `connect` provisioner we use here (e.g.
# https://github.com/teemtee/tmt/issues/5068); bump deliberately.
# renovate: datasource=pypi depName=tmt
export VERSION=1.74.0
pip install --user "tmt[provision-virtual]==${VERSION}"
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ jobs:
with:
libvirt: true
- name: Install tmt
run: pip install --user "tmt[provision-virtual]"
uses: ./.github/actions/install-tmt

- name: Setup env
run: |
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:
with:
libvirt: true
- name: Install tmt
run: pip install --user "tmt[provision-virtual]"
uses: ./.github/actions/install-tmt

- name: Setup env
run: |
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
with:
libvirt: true
- name: Install tmt
run: pip install --user "tmt[provision-virtual]"
uses: ./.github/actions/install-tmt

- name: Setup env
run: |
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:
with:
libvirt: true
- name: Install tmt
run: pip install --user "tmt[provision-virtual]"
uses: ./.github/actions/install-tmt

- name: Setup env
run: |
Expand Down
Loading