Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions ansible/group_vars/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
jenkins_url: "https://ci-release.nodejs.org"
# intentionally fetching `slave.jar` from ci.nodejs.org to avoid auth problems
jenkins_worker_jar: "https://ci.nodejs.org/jnlpJars/slave.jar"
jenkins_icon: "https://ci.nodejs.org/favicon.ico"
server_user: "iojs"
home: "/home"
git_reference_path: "{{ home }}/{{ server_user }}/.ccache/node.shared.reference"
Expand Down
1 change: 1 addition & 0 deletions ansible/group_vars/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
jenkins_url: "https://ci.nodejs.org"
jenkins_worker_jar: "{{ jenkins_url }}/jnlpJars/slave.jar"
jenkins_icon: "{{ jenkins_url }}/favicon.ico"
server_user: iojs
home: "/home"
git_reference_path: "{{ home }}/{{ server_user }}/git/io.js.reference"
Expand Down
13 changes: 12 additions & 1 deletion ansible/roles/baselayout-windows/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,18 @@
install_args: 'ADD_CMAKE_TO_PATH=System'

- name: install Python 3
win_chocolatey: name=python
win_chocolatey:
install_args: Include_launcher=1
name: python3
pinned: yes
version: "3.10.8"

- name: install Python 3
win_chocolatey:
install_args: Include_launcher=1
name: python
pinned: yes
version: "3.10.8"

- name: install Python 2
win_chocolatey: name=python2
Expand Down
6 changes: 3 additions & 3 deletions ansible/roles/jenkins-worker-windows/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
# Install the Jenkins worker
#

- name: install Java 8
win_chocolatey: name=jdk8
- name: install Java 17
win_chocolatey: name=Temurin17

- name: download Jenkins icon
win_get_url:
url: 'http://mirrors.jenkins-ci.org/art/jenkins-logo/favicon.ico'
url: '{{ jenkins_icon }}'
dest: 'C:\jenkins.ico'
force: no

Expand Down