Skip to content

Commit d63e66f

Browse files
committed
ansible: remove zos variables from mac script
Zos variables were being used in the Mac script, which was causing build failures. In particular, the script was referencing "/bin/xlc" which does not exist on Mac. Refs: #1345
1 parent af6633c commit d63e66f

File tree

1 file changed

+5
-14
lines changed
  • ansible/roles/jenkins-worker/templates

1 file changed

+5
-14
lines changed

ansible/roles/jenkins-worker/templates/start.j2

+5-14
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,11 @@
22
export HOME={{ home }}/{{ server_user }}
33
export NODE_TEST_DIR="$HOME/tmp"
44
export JOBS="{{ jobs_env }}"
5-
export OSTYPE=zos
65

7-
export _BPXK_AUTOCVT=ON
8-
export _CEE_RUNOPTS="FILETAG(AUTOCVT,AUTOTAG) POSIX(ON)"
9-
export _TAG_REDIR_ERR=txt
10-
export _TAG_REDIR_IN=txt
11-
export _TAG_REDIR_OUT=txt
6+
export OSTYPE=osx
7+
export ARCH=x64
8+
export DESTCPU=x64
129

13-
export CC=/bin/xlc
14-
export LINK=/bin/xlc
15-
export CFLAGS="-q64"
16-
export LDFLAGS="-q64"
17-
18-
{{ java_path[os] }} -Dfile.encoding=ISO8859_1 -Xmx{{ server_ram|default('128m') }} \
10+
{{ java_path[os] }} -Xmx{{ server_ram|default('128m') }} \
1911
-jar {{ home }}/{{ server_user }}/slave.jar -secret {{ secret }} \
20-
-jnlpUrl {{ jenkins_url }}/computer/{{ inventory_hostname }}/slave-agent.jnlp >{{ home }}/{{ server_user }}/jenkins.log 2>&1 &
21-
EOF
12+
-jnlpUrl {{ jenkins_url }}/computer/{{ inventory_hostname }}/slave-agent.jnlp

0 commit comments

Comments
 (0)