Skip to content

Update: for the new changes #1

Update: for the new changes

Update: for the new changes #1

Workflow file for this run

name: Ubuntu X86_64
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
arch: [x86]
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get update && sudo apt-get cmake libfmt-dev libtbb-dev libboost-all-dev ninja-build -y
- name: Setup CMake and Ninja
uses: lukka/[email protected]
- name: Check GCC Version
run: g++ --version
- name: Create build directory
run: mkdir build
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build --config Release