Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GHA workflows for testing s390x and i386 #1971

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Put dependencies in own layer for quicker rebuilds
  • Loading branch information
alexreinking authored and keithw committed May 25, 2023
commit fe8fc6160752f9637b95b9272b938514c256e741
9 changes: 5 additions & 4 deletions scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ WORKDIR /ws
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=UTC

COPY . .

RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && \
echo $TZ > /etc/timezone && \
apt-get update && \
apt-get install -y git g++ cmake ninja-build python3 file && \
cmake -G Ninja -S . -B build -DCMAKE_BUILD_TYPE=Release && \
apt-get install -y git g++ cmake ninja-build python3 file

COPY . .

RUN cmake -G Ninja -S . -B build -DCMAKE_BUILD_TYPE=Release && \
cmake --build build
Loading