Skip to content

Workflow file for this run

name: "Building the inLimbo project (x86 arch - GCC) (x86 arch - Clang) in Ubuntu"
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout Repository
uses: actions/checkout@v2
# Install dependencies
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential cmake libtag1-dev git libglib2.0-dev imagemagick libx11-dev libpng-dev libcereal-dev libgtest-dev ffmpeg
- name: Build the inLimbo project ==> (x86 arch - GCC)
run: |
make build-all CMAKE_EXTRA_FLAGS="-D CMAKE_CXX_COMPILER=c++"
- name: Build the inLimbo project ==> (x86 arch - Clang)
run: |
make build-all CMAKE_EXTRA_FLAGS="-D CMAKE_CXX_COMPILER=clang++"
- name: Clean up
run: rm -rf build