Skip to content

Commit e5d98be

Browse files
authored
Merge pull request #61 from RobertKielty/gnumake
adds the make package which installs gnumake
2 parents da10f13 + 5d4bd0b commit e5d98be

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/test-oracle-runners.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,14 @@ jobs:
3434
run: |
3535
echo "df -h on ${{matrix.cncf_runner}}"
3636
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

ci/gha-runner-image/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ RUN apt-get install -y --no-install-recommends gnupg
1313
RUN apt-get install -y --no-install-recommends python3-pip
1414
RUN apt-get install -y --no-install-recommends locales && \
1515
locale-gen en_US.UTF-8
16+
RUN apt-get install -y --no-install-recommends make
1617

1718
ENV LANG=en_US.UTF-8 \
1819
LC_ALL=en_US.UTF-8 \
@@ -21,4 +22,4 @@ ENV LANG=en_US.UTF-8 \
2122

2223

2324

24-
USER runner
25+
USER runner

0 commit comments

Comments
 (0)