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
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,9 @@ jobs:
- name: Check for Dockerfile changes
id: check
run: |
echo "changed=true" >> "$GITHUB_OUTPUT"
if git diff --name-only ${{ github.event.before }}..${{ github.event.after }} | grep -q 'Dockerfile.ci-debian'; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Log in to Container Registry
if: steps.check.outputs.changed == 'true'
uses: docker/login-action@v3
Expand All @@ -151,7 +153,9 @@ jobs:
- name: Check for Dockerfile changes
id: check
run: |
echo "changed=true" >> "$GITHUB_OUTPUT"
if git diff --name-only ${{ github.event.before }}..${{ github.event.after }} | grep -q 'Dockerfile.ci-fedora'; then
echo "changed=true" >> "$GITHUB_OUTPUT"
fi
- name: Log in to Container Registry
if: steps.check.outputs.changed == 'true'
uses: docker/login-action@v3
Expand Down
1 change: 1 addition & 0 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Build-Depends: bash-completion,
flit,
git,
python3-all,
python3-argcomplete,
python3-requests,
python3-jinja2,
python3-pip,
Expand Down
2 changes: 1 addition & 1 deletion tuxrun.PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pkgdesc='TuxRun is a command line tool for testing Linux with curated test suite
url='https://tuxrun.org/'
license=('MIT')
arch=('any')
depends=('python' 'python-jinja' 'python-requests' 'python-yaml' 'python-ruamel-yaml' 'tuxlava')
depends=('python' 'python-argcomplete' 'python-jinja' 'python-requests' 'python-yaml' 'python-ruamel-yaml' 'tuxlava')
makedepends=('git' 'python-build' 'python-flit' 'python-installer' 'python-wheel')
checkdepends=('python-pytest' 'python-pytest-cov' 'python-pytest-mock')
optdepends=('docker: Container-based build support'
Expand Down
2 changes: 2 additions & 0 deletions tuxrun.spec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ BuildRequires: python3-yaml
BuildRequires: python3-ruamel-yaml
BuildRequires: python3-jinja2
BuildRequires: python3-requests
BuildRequires: python3-argcomplete
BuildRequires: tuxlava
Requires: python3-argcomplete
Requires: python3-yaml
Requires: python3-ruamel-yaml
Requires: python3-jinja2
Expand Down
Loading