WIP -Syu #48
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux ARM | |
on: [push] | |
jobs: | |
build-linux-arm: | |
strategy: | |
matrix: | |
#arch: [armv7, aarch64] | |
include: | |
- arch: aarch64 | |
distro: ubuntu22.04 | |
- arch: armv7 | |
distro: archarm_latest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get current branch name | |
uses: nelonoel/[email protected] | |
- name: Run Build | |
uses: uraimo/run-on-arch-action@v2 | |
with: | |
arch: ${{matrix.arch}} | |
distro: ${{matrix.distro}} | |
githubToken: ${{github.token}} # Not required, but speeds up builds | |
install: | | |
case "${{ matrix.distro }}" in | |
ubuntu*) | |
apt-get -y update | |
apt-get -y install xvfb # Needed to run unit tests | |
apt-get -y install cmake | |
apt-get -y install git | |
apt-get -y install g++ | |
apt-get -y install qtbase5-dev libqt5svg5-dev | |
apt-get -y install libxcb-cursor0 # Dependencies for "xcb" Qt plugin(actually needed for Qt6) | |
apt-get -y install libocct-data-exchange-dev libocct-draw-dev occt-misc | |
apt-get -y install libtbb2-dev libxi-dev # Dependencies for OpenCascade v7.5 | |
apt-get -y install libassimp-dev | |
;; | |
archarm*) | |
pacman -Syu --noconfirm | |
pacman -Sy --noconfirm xorg-server-xvfb | |
pacman -Sy --noconfirm cmake | |
pacman -Sy --noconfirm git | |
pacman -Sy --noconfirm gcc | |
pacman -Sy --noconfirm qt5-base qt5-svg | |
pacman -Sy --noconfirm xcb-util-cursor | |
pacman -Sy --noconfirm opencascade | |
pacman -Sy --noconfirm libxi | |
pacman -Sy --noconfirm assimp | |
;; | |
esac | |
env: | | |
DISPLAY: :0 | |
GIT_BRANCH_NAME: ${{env.BRANCH_NAME}} | |
RUN_ARCH_NAME: ${{matrix.arch}} | |
run: | | |
git clone --quiet https://github.com/fougue/mayo.git | |
cd mayo | |
# Fixes "fatal: detected dubious ownership in repository at '/home/runner/work/mayo/mayo'" | |
git config --global --add safe.directory `realpath $PWD/..` | |
echo GIT_BRANCH_NAME=$GIT_BRANCH_NAME | |
git checkout $GIT_BRANCH_NAME | |
cd .. | |
mkdir build | |
cd build | |
cmake --version | |
cmake .. \ | |
-DMayo_BuildTests=ON \ | |
-DMayo_BuildPluginAssimp=ON | |
cmake --build . \ | |
--config Release \ | |
--parallel `nproc` | |
# Start X11 display server | |
Xvfb $DISPLAY -screen 0 1280x1024x24 & | |
sleep 5s | |
./mayo --runtests |