Skip to content

Commit

Permalink
Fix building on FreeBSD
Browse files Browse the repository at this point in the history
Cirrus CI on FreeBSD failed because "No packages available to install
matching 'py37-pip' have been found in the repositories"i [1].
Package 'py37-pip' has been replaced with 'py38-pip', see [2].

1. https://cirrus-ci.com/task/6375178809638912
2. https://www.freshports.org/devel/py-pip/
  • Loading branch information
ligurio committed Jul 16, 2021
1 parent f792285 commit b4e9070
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ freebsd_12_2: &freebsd_12_2
env:
CC: clang
install_script:
- ASSUME_ALWAYS_YES=yes pkg bootstrap -f; pkg install -y cmake fusefs-libs pkgconf python3 py37-pip fio
- ASSUME_ALWAYS_YES=yes pkg bootstrap -f; pkg install -y cmake fusefs-libs pkgconf python3 py38-pip fio

This comment has been minimized.

Copy link
@0mp

0mp Aug 9, 2021

@ligurio, just a note. You may want to use the globbing flag here, e.g., pkg install -g py3*-pip.

- kldload fuse
- kldstat
- sudo python3.7 -m pip install pytest
- sudo python3.8 -m pip install pytest

task:
matrix:
Expand Down

0 comments on commit b4e9070

Please sign in to comment.