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 GitHub Actions to automatically build and run MAMBO for all supported architectures #123

Merged
merged 4 commits into from
May 30, 2024
Merged
Changes from all commits
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
50 changes: 50 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: build-and-run-mambo
run-name: Building and running MAMBO triggered by ${{ github.actor }} on ${{ github.ref }}
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-run-mambo:
strategy:
matrix:
os: [focal]
arch: [ {os: arm64, qemu: aarch64}, {os: riscv64, qemu: riscv64}, {os: armhf, qemu: arm} ]
fail-fast: false
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
path: mambo
submodules: true
- name: Set up host environment
run: |
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install -y debootstrap
sudo apt-get install -y qemu-user-static
sudo mkdir -p /tmp/chroot/
sudo chown root /bin/tar
sudo chmod u+s /bin/tar
- uses: actions/cache/restore@v4
id: cache
with:
path: /tmp/chroot/${{ matrix.arch.os }}
key: ${{ matrix.os }}.${{ matrix.arch.os }}
- name: Install and configure sysroot
if: steps.cache.outputs.cache-hit != 'true'
run: |
sudo debootstrap --arch=${{ matrix.arch.os }} --foreign ${{ matrix.os }} /tmp/chroot/${{ matrix.arch.os }} http://ports.ubuntu.com/ubuntu-ports
sudo cp /usr/bin/qemu-${{ matrix.arch.qemu }}-static /tmp/chroot/${{ matrix.arch.os }}/usr/bin/
sudo chroot /tmp/chroot/${{ matrix.arch.os }}/ /usr/bin/qemu-${{ matrix.arch.qemu }}-static /bin/bash -c '/debootstrap/debootstrap --second-stage'
- uses: actions/cache/save@v4
if: steps.cache.outputs.cache-hit != 'true'
with:
path: /tmp/chroot/${{ matrix.arch.os }}
key: ${{ matrix.os }}.${{ matrix.arch.os }}
- name: Build and run MAMBO inside chroot
run: |
sudo cp -r $GITHUB_WORKSPACE/mambo /tmp/chroot/${{ matrix.arch.os }}/root
sudo chroot /tmp/chroot/${{ matrix.arch.os }}/ /usr/bin/qemu-${{ matrix.arch.qemu }}-static /bin/bash -c 'sudo apt-get update; sudo apt-get upgrade -y; sudo apt-get -y install build-essential libelf-dev ruby; cd /root/mambo/; make'
sudo chroot /tmp/chroot/${{ matrix.arch.os }}/ /usr/bin/qemu-${{ matrix.arch.qemu }}-static /bin/bash -c '/root/mambo/dbm /bin/ls'
Loading