Skip to content

Commit

Permalink
github-actions: add cross-compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
marckleinebudde committed May 29, 2024
1 parent fb3b2a7 commit 4f02713
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ jobs:
podman exec -i stable uname -a
podman exec -i stable id
podman exec -i -u root stable apt update
podman exec -e DEBIAN_FRONTEND='noninteractive' -i -u root stable apt install -o APT::Install-Suggests=false -qy gcc clang cmake make ninja-build
podman exec -e DEBIAN_FRONTEND='noninteractive' -i -u root stable apt install -o APT::Install-Suggests=false -qy \
clang \
cmake \
gcc \
gcc-aarch64-linux-gnu \
gcc-arm-linux-gnueabihf \
make \
ninja-build
- name: Configure & Build with gcc
run: |
Expand Down

0 comments on commit 4f02713

Please sign in to comment.