ansible: update Java for arm Dockerfiles#4358
Conversation
Signed-off-by: Richard Lau <richard.lau@ibm.com>
|
Test CI ( |
sxa
left a comment
There was a problem hiding this comment.
LGTM if the python venv magic works ok :-)
Apparently it did not I think this is because I put the venv in |
Signed-off-by: Richard Lau <richard.lau@ibm.com>
|
Retrying ( |
We appear to have a consistent failure in |
|
The test is skipped on Debian 11 armv7: and Ubuntu 22.04 armv7: const testFilePath = `${tmpdir.path}/y2k38-test`;
const testFileDate = '204001020304';
const { spawnSync } = require('child_process');
const touchResult = spawnSync('touch',
['-t', testFileDate, testFilePath],
{ encoding: 'utf8' });
if (touchResult.status !== 0) {
common.skip('File system appears to lack Y2K38 support (touch failed)');
}So it looks like the Debian 11's iojs@test-azure-debian11--container-armv7l-1:/tmp$ touch --help
Usage: touch [OPTION]... FILE...
Update the access and modification times of each FILE to the current time.
A FILE argument that does not exist is created empty, unless -c or -h
is supplied.
A FILE argument string of - is handled specially and causes touch to
change the times of the file associated with standard output.
Mandatory arguments to long options are mandatory for short options too.
-a change only the access time
-c, --no-create do not create any files
-d, --date=STRING parse STRING and use it instead of current time
-f (ignored)
-h, --no-dereference affect each symbolic link instead of any referenced
file (useful only on systems that can change the
timestamps of a symlink)
-m change only the modification time
-r, --reference=FILE use this file's times instead of current time
-t STAMP use [[CC]YY]MMDDhhmm[.ss] instead of current time
--time=WORD change the specified time:
WORD is access, atime, or use: equivalent to -a
WORD is modify or mtime: equivalent to -m
--help display this help and exit
--version output version information and exit
Note that the -d and -t options accept different time-date formats.
GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
Report any translation bugs to <https://translationproject.org/team/>
Full documentation <https://www.gnu.org/software/coreutils/touch>
or available locally via: info '(coreutils) touch invocation'
iojs@test-azure-debian11--container-armv7l-1:/tmp$ touch -t 204001020304 /tmp/date_test
touch: invalid date format '204001020304'
iojs@test-azure-debian11--container-armv7l-1:/tmp$iojs@test-osuosl-debian13--container-armv7l-1:/tmp$ touch --help
Usage: touch [OPTION]... FILE...
Update the access and modification times of each FILE to the current time.
A FILE argument that does not exist is created empty, unless -c or -h
is supplied.
A FILE argument string of - is handled specially and causes touch to
change the times of the file associated with standard output.
Mandatory arguments to long options are mandatory for short options too.
-a change only the access time
-c, --no-create do not create any files
-d, --date=STRING parse STRING and use it instead of current time
-f (ignored)
-h, --no-dereference affect each symbolic link instead of any referenced
file (useful only on systems that can change the
timestamps of a symlink)
-m change only the modification time
-r, --reference=FILE use this file's times instead of current time
-t [[CC]YY]MMDDhhmm[.ss] use specified time instead of current time,
with a date-time format that differs from -d's
--time=WORD specify which time to change:
access time (-a): 'access', 'atime', 'use';
modification time (-m): 'modify', 'mtime'
--help display this help and exit
--version output version information and exit
GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
Report any translation bugs to <https://translationproject.org/team/>
Full documentation <https://www.gnu.org/software/coreutils/touch>
or available locally via: info '(coreutils) touch invocation'
iojs@test-osuosl-debian13--container-armv7l-1:/tmp$ touch -t 204001020304 /tmp/date_test
iojs@test-osuosl-debian13--container-armv7l-1:/tmp$ |
|
Maybe the test/api is just broken on 32-bit? nodejs/node#41997 |
Refs: #4304
Debian 11 armv7 containers are updated to Debian 13.
Deployment