File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,13 @@ ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin
55# A couple of packages are either missing critical-ish files, or didn't make it into the tar
66# Reinstalling filesystem might not succeed fully, but continue anyway
77RUN chmod 1777 /tmp && \
8+ yum install -y --releasever=latest glibc-devel; \
89 /usr/bin/python3 -c "from configparser import SafeConfigParser; \
910yum_conf = SafeConfigParser(); \
10- yum_conf.read('/etc/yum.conf'); \
11+ yum_conf.read('/etc/yum/yum .conf'); \
1112yum_conf.has_section('main') or yum_conf.add_section('main'); \
1213yum_conf.set('main', 'plugins', '1'); \
13- f = open('/etc/yum.conf', 'w'); \
14+ f = open('/etc/yum/yum .conf', 'w'); \
1415yum_conf.write(f); \
1516f.close();" && \
1617 rpm --rebuilddb && \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ RUNTIMES="node43 node610 node810 python27 python36 python37 ruby2.5 java8 go1x d
44
55for RUNTIME in $RUNTIMES ; do
66 echo $RUNTIME
7- aws lambda invoke --function-name " dump-${RUNTIME} " /dev/stdout
7+ aws --cli-read-timeout 0 --cli-connect-timeout 0 lambda invoke --function-name " dump-${RUNTIME} " /dev/stdout
88 aws logs filter-log-events --log-group-name " /aws/lambda/dump-${RUNTIME} " \
99 --start-time $( node -p ' Date.now() - 5*60*1000' ) --query ' events[].message' --output text
1010done
You can’t perform that action at this time.
0 commit comments