Skip to content

Builds

Builds #5

Workflow file for this run

# Builds for different compilers, architectures and targets
name: Builds
on:
workflow_call:
workflow_dispatch:
merge_group:
concurrency:
group: builds_${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: X64
env:
machines: linux_gcc_x86_64
gcc: gcc-8.5.0
targets: all
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/actions/deps
- uses: dtolnay/[email protected]
- name: Start build
run: |
contrib/build.sh --no-deps \
--targets $targets --machines $machines \
--gcc-versions ${{ env.gcc || 'none --no-gcc' }} \
--clang-versions ${{ env.clang || 'none --no-clang' }}