diff options
author | Matt Clay <matt@mystile.com> | 2024-06-21 00:20:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 00:20:10 +0200 |
commit | a121a169e3a04ac5fea20af88126ae9302dff657 (patch) | |
tree | 644883e4749c8e12964887ba0b0163c9df7a10ea | |
parent | unarchive: handle content and size differences (#83454) (diff) | |
download | ansible-a121a169e3a04ac5fea20af88126ae9302dff657.tar.xz ansible-a121a169e3a04ac5fea20af88126ae9302dff657.zip |
ansible-test - Replace FreeBSD 14.0 with 14.1 (#83477)
4 files changed, 8 insertions, 7 deletions
diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml index e7c46239b5..cb0cc929a1 100644 --- a/.azure-pipelines/azure-pipelines.yml +++ b/.azure-pipelines/azure-pipelines.yml @@ -85,8 +85,8 @@ stages: test: rhel/9.4@3.12 - name: FreeBSD 13.3 test: freebsd/13.3 - - name: FreeBSD 14.0 - test: freebsd/14.0 + - name: FreeBSD 14.1 + test: freebsd/14.1 groups: - 1 - 2 @@ -99,8 +99,8 @@ stages: test: rhel/9.4 - name: FreeBSD 13.3 test: freebsd/13.3 - - name: FreeBSD 14.0 - test: freebsd/14.0 + - name: FreeBSD 14.1 + test: freebsd/14.1 groups: - 3 - 4 diff --git a/changelogs/fragments/ansible-test-platform-updates.yml b/changelogs/fragments/ansible-test-platform-updates.yml index 623bd249ff..16efa09162 100644 --- a/changelogs/fragments/ansible-test-platform-updates.yml +++ b/changelogs/fragments/ansible-test-platform-updates.yml @@ -4,3 +4,4 @@ minor_changes: - ansible-test - Replace Ubuntu 20.04 container with Ubuntu 24.04 container. - ansible-test - Add Ubuntu 24.04 remote. - ansible-test - Replace RHEL 9.3 remote with RHEL 9.4. + - ansible-test - Replace FreeBSD 14.0 remote with FreeBSD 14.1. diff --git a/test/lib/ansible_test/_data/completion/remote.txt b/test/lib/ansible_test/_data/completion/remote.txt index 0f5ed00143..dea1d33a6a 100644 --- a/test/lib/ansible_test/_data/completion/remote.txt +++ b/test/lib/ansible_test/_data/completion/remote.txt @@ -3,7 +3,7 @@ alpine become=doas_sudo provider=aws arch=x86_64 fedora/40 python=3.12 become=sudo provider=aws arch=x86_64 fedora become=sudo provider=aws arch=x86_64 freebsd/13.3 python=3.9,3.11 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 -freebsd/14.0 python=3.9,3.11 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 +freebsd/14.1 python=3.9,3.11 python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 freebsd python_dir=/usr/local/bin become=su_sudo provider=aws arch=x86_64 macos/14.3 python=3.11 python_dir=/usr/local/bin become=sudo provider=parallels arch=x86_64 macos python_dir=/usr/local/bin become=sudo provider=parallels arch=x86_64 diff --git a/test/lib/ansible_test/_util/target/setup/bootstrap.sh b/test/lib/ansible_test/_util/target/setup/bootstrap.sh index 709d7f6e64..b926a8e673 100644 --- a/test/lib/ansible_test/_util/target/setup/bootstrap.sh +++ b/test/lib/ansible_test/_util/target/setup/bootstrap.sh @@ -176,10 +176,10 @@ bootstrap_remote_freebsd() cryptography_pkg="" # not available pyyaml_pkg="" # not available ;; - 14.0/3.9) + 14.1/3.9) # defaults above 'just work'TM ;; - 14.0/3.11) + 14.1/3.11) cryptography_pkg="" # not available jinja2_pkg="" # not available pyyaml_pkg="" # not available |