File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 34
34
run : |
35
35
echo "df -h on ${{matrix.cncf_runner}}"
36
36
df -h /
37
+
38
+ - name : Get versions of installed tools, list supported locales
39
+ run : |
40
+ kmod --version && \
41
+ zstd --version && \
42
+ dirmngr --version && \
43
+ wget --version && \
44
+ gpg --version && \
45
+ pip --version && \
46
+ locale -a && \
47
+ make --version
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ RUN apt-get install -y --no-install-recommends gnupg
13
13
RUN apt-get install -y --no-install-recommends python3-pip
14
14
RUN apt-get install -y --no-install-recommends locales && \
15
15
locale-gen en_US.UTF-8
16
+ RUN apt-get install -y --no-install-recommends make
16
17
17
18
ENV LANG=en_US.UTF-8 \
18
19
LC_ALL=en_US.UTF-8 \
@@ -21,4 +22,4 @@ ENV LANG=en_US.UTF-8 \
21
22
22
23
23
24
24
- USER runner
25
+ USER runner
You can’t perform that action at this time.
0 commit comments