ci: Set LANG environment variable

Hopefully this will fix this warning from Ansible:

> [WARNING]: An error occurred while calling
> ansible.utils.display.initialize_locale (unsupported locale setting).
> This may result in incorrectly calculated text widths that can cause
> Display to print incorrect line lengths
btop
Dustin 2022-11-09 21:21:46 -06:00
parent 9286e431ab
commit 6af78aadda
1 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,9 @@ def call(rw_limit, stages) {
image: 'git.pyrocufflink.net/containerimages/ansible', image: 'git.pyrocufflink.net/containerimages/ansible',
command: 'sleep', command: 'sleep',
args: 'infinity', args: 'infinity',
envVars: [
envVar(key: 'LANG', value: 'C.UTF-8'),
],
) )
]) { ]) {
node(POD_LABEL) { node(POD_LABEL) {