Skip to content

[pull_request] 93/merge > da389f8fc52a6fda58e55b1ec14e57773ec8a82a #227

[pull_request] 93/merge > da389f8fc52a6fda58e55b1ec14e57773ec8a82a

[pull_request] 93/merge > da389f8fc52a6fda58e55b1ec14e57773ec8a82a #227

Workflow file for this run

name: Build Binaries
run-name: '[${{ github.event_name }}] ${{ github.ref_name }} > ${{ github.sha }}'
# When is the workflow actually triggerd
on:
# Manually triggered
workflow_dispatch:
push:
branches: [maintainer/bryan]
pull_request:
branches:
#TODO: Once 'main' is replaced
# schedule:
# # Every Wednesday at midnight
# - cron: '0 0 * * 3'
#
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
# Build the Krakens if their files have been modified
build_simulator:
runs-on: ubuntu-24.04
name: Build Simulators
env:
CC: gcc-13
CXX: g++-13
strategy:
fail-fast: true
matrix:
binaries:
- keenkraken
- knottykraken
build_type:
- release
- relwithdebinfo
- debug
steps:
- name: Checkout Flexus
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11.9'
- name: Install conan
run: pip install conan
- name: Detect current environmment profile
run: conan profile detect --force
- name: Build a Flexus based on matrix
run: conan build . -pr target/_profile/${{ matrix.build_type }} -b missing --name=${{ matrix.binaries }} -of ./build