Skip to content

Commit 6fa7bfa

Browse files
Allow spaces in $DNF_INSTALL
Resolves: #74 Co-authored-by: Miro Hrončok <[email protected]>
1 parent 252397a commit 6fa7bfa

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/build-and-push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
env:
6464
TOXENV: ${{ matrix.toxenv }}
6565
run: |
66-
docker run --rm --platform linux/${{ matrix.arch }} -e DNF_INSTALL="libffi-devel pkgconfig(libgit2) /usr/bin/cowsay" fedorapython/fedora-python-tox:${{ matrix.arch }} sh -c "/run_tests.sh; pip install -I --no-deps --compile --no-binary :all: cffi pygit2~=1.14.0 && cowsay DONE"
66+
docker run --rm --platform linux/${{ matrix.arch }} -e DNF_INSTALL="libffi-devel 'pkgconfig(libgit2) >= 1.7' /usr/bin/cowsay" fedorapython/fedora-python-tox:${{ matrix.arch }} sh -c "/run_tests.sh; pip install -I --no-deps --compile --no-binary :all: cffi pygit2~=1.14.0 && cowsay DONE"
6767
- name: Test external project with WORKDIR
6868
run: |
6969
docker run --rm --platform linux/${{ matrix.arch }} -e TOXENV=py310-minimal -e GIT_URL=https://github.com/trezor/trezor-firmware.git -e WORKDIR=python fedorapython/fedora-python-tox:${{ matrix.arch }}

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,9 @@ You can install packages by any RPM *Provides*, for example:
179179
* pkgconfig names, e.g. `pkgconfig(libgit2)`, or
180180
* commands, e.g. `/usr/bin/cowsay`.
181181

182+
Complex specifications including spaces have to be enclosed in single quotes
183+
inside the double quotes. For example: `-e DNF_INSTALL="libyaml-devel 'pytest > 7'"`
184+
182185
# WORKDIR
183186

184187
If your `tox.ini` file is not in the root directory of your project, set `WORKDIR` to the path you want to cd to before the tests are executed.

run_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if [ ! -z $GIT_URL ]; then
1010
fi
1111

1212
if [ ! -z "$DNF_INSTALL" ]; then
13-
dnf -y --setopt=tsflags=nodocs --setopt=deltarpm=false install $DNF_INSTALL
13+
echo $DNF_INSTALL | xargs dnf -y --setopt=tsflags=nodocs --setopt=deltarpm=false install
1414
fi
1515

1616
# Mark the current directory as safe for Git:

0 commit comments

Comments
 (0)