Skip to content

Commit

Permalink
Fix Cirrus CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Defenso-QTH committed Sep 2, 2024
1 parent 38d0416 commit 82ae14f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
freebsd_instance:
image_family: freebsd-13-2
image_family: freebsd-14-1

iocage_tests_task:
create_pool_script:
- truncate -s 20G /root/poolfile
- zpool create pool /root/poolfile
install_pkgs_script:
- sed -i '' 's/quarterly/latest/g' /etc/pkg/FreeBSD.conf
- pkg install -y git python3 py39-sqlite3
- pkg install -y git python3 py311-sqlite3
- pkg install -y rust
configure_python_script:
- python3 -m ensurepip
pip_cache:
folder: ~/.cache/pip
populate_script:
- python3 install -r requirements-test.txt
- python3 -m pip install -r requirements-test.txt
- python3 -m pip install -r requirements.txt
- python3 -m pip install -U cython
env_setup_script:
- python3 -m pip install -U -r requirements-test.txt
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def pytest_addoption(parser):
help='Specify a zpool to use.'
)
parser.addoption(
'--release', action='store', default='12.2-RELEASE',
'--release', action='store', default='14.1-RELEASE',
help='Specify a RELEASE to use.'
)
parser.addoption(
Expand Down

0 comments on commit 82ae14f

Please sign in to comment.