Commit 00931bd3 authored by Vitaly Lipatov's avatar Vitaly Lipatov

tests: test only eepm main package

parent 97fd5b30
...@@ -30,7 +30,7 @@ jobs: ...@@ -30,7 +30,7 @@ jobs:
- name: install - name: install
run: | run: |
apt-get install -y /usr/src/RPM/RPMS/noarch/*.rpm apt-get install -y /usr/src/RPM/RPMS/noarch/eepm-3*.rpm
- name: testsuite - name: testsuite
run: | run: |
......
#!/bin/bash #!/bin/bash
EPMPKGFILE=/usr/src/RPM/RPMS/noarch/eepm-3*.rpm
fatal() fatal()
{ {
exit 1 exit 1
...@@ -8,7 +10,7 @@ fatal() ...@@ -8,7 +10,7 @@ fatal()
restore_epm() restore_epm()
{ {
# in the far future: epm upgrade /usr/src/RPM/RPMS/noarch/*.rpm # in the far future: epm upgrade /usr/src/RPM/RPMS/noarch/*.rpm
epm --auto install /usr/src/RPM/RPMS/noarch/*.rpm epm --auto install $EPMPKGFILE
} }
set -e -x set -e -x
...@@ -18,9 +20,9 @@ epm print info ...@@ -18,9 +20,9 @@ epm print info
epm update epm update
epm upgrade /usr/src/RPM/RPMS/noarch/*.rpm epm upgrade $EPMPKGFILE
epm downgrade /usr/src/RPM/RPMS/noarch/*.rpm epm downgrade $EPMPKGFILE
epm --auto remove erc epm --auto remove erc
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment