Skip to content

Commit

Permalink
ansible: add test-digitalocean-freebsd13-x64-1
Browse files Browse the repository at this point in the history
  • Loading branch information
richardlau committed Sep 27, 2024
1 parent 3566553 commit c7e6565
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 21 deletions.
1 change: 1 addition & 0 deletions ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ ansible_python_interpreter = /opt/local/bin/python

[hosts:freebsd]
ansible_python_interpreter = /usr/local/bin/python3
ansible_shell_allow_world_readable_temp = True

[hosts:ibm]
become_method = sudo
Expand Down
1 change: 1 addition & 0 deletions ansible/inventory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ hosts:
fedora40-x64-2: {ip: 162.243.187.89}
freebsd12-x64-1: {ip: 45.55.90.237, user: freebsd}
freebsd12-x64-2: {ip: 107.170.28.213, user: freebsd}
freebsd13-x64-1: {ip: 138.197.25.49, user: freebsd}
rhel8-x64-1: {ip: 161.35.139.78, build_test_v8: yes, swap_file_size_mb: 2048}
rhel9-x64-1: {ip: 134.122.12.240, swap_file_size_mb: 2048}
ubuntu2204_docker-x64-1: {ip: 134.209.55.216}
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/baselayout/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ packages: {
],

freebsd: [
'ccache,git,gmake,sudo,python2,python3'
'ccache,git,gmake,sudo,python3'
],

'macos10.15': [
Expand Down
15 changes: 0 additions & 15 deletions ansible/roles/bootstrap/tasks/partials/freebsd.yml

This file was deleted.

2 changes: 1 addition & 1 deletion ansible/roles/java-base/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ packages: {
'debian11': 'openjdk-17-jre-headless',
'debian12': 'openjdk-17-jre-headless',
'fedora': 'java-17-openjdk-headless',
'freebsd': 'openjdk11-jre',
'freebsd': 'openjdk17-jre',
'ibmi': 'openjdk-11-ea',
'macos': 'temurin17',
'rhel7': 'java-11-openjdk',
Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
---

#
# freebsd: python3.8
# freebsd13: python3.11
#

- name: install pip
package:
name: py39-pip
name: py311-pip
state: present

- name: freebsd | update pip3 symlink
when: os == "freebsd12"
when: os == "freebsd13"
file:
dest: "/usr/local/bin/pip3"
state: link
src: "/usr/local/bin/pip-3.9"
src: "/usr/local/bin/pip-3.11"

- name: install tap2junit
pip:
Expand Down

0 comments on commit c7e6565

Please sign in to comment.