Builds #2
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
# 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: | | ||
Check failure on line 28 in .github/workflows/builds.yml GitHub Actions / BuildsInvalid workflow file
|
||
contrib/build.sh --no-deps \ | ||
--targets $targets --machines $machines \ | ||
--gcc-versions ${{ gcc || 'none --no-gcc' \ | ||
--clang-versions ${{ clang || 'none --no-clang' |