Skip to content

Commit 538f083

Browse files
committed
Use proper package names on Fedora
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent bb34a64 commit 538f083

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

azure-pipelines.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -217,13 +217,16 @@ jobs:
217217
container: 'fedora:30'
218218
package_manager: dnf
219219
python_path: 'python2.7'
220-
install_python: sudo dnf install -y python python27-devel
220+
install_python: |
221+
set -e -x
222+
sudo dnf install -y python2 python2-devel
221223
222224
- template: etc/ci/azure-container-rpm.yml
223225
parameters:
224-
name: Fedora_30_py36
226+
name: Fedora_30_py37
225227
container: 'fedora:30'
226228
package_manager: dnf
227-
python_path: 'python3.6'
228-
install_python: sudo dnf install -y python36 python36-devel python36-virtualenv
229-
229+
python_path: 'python3.7'
230+
install_python: |
231+
set -e -x
232+
sudo dnf install -y python3 python3-devel python3-virtualenv

0 commit comments

Comments
 (0)