-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: update workflow file and build matrix script
- Loading branch information
Showing
2 changed files
with
222 additions
and
83 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,121 @@ | ||
# Builds for different compilers, architectures and targets | ||
# Builds for all compilers, architectures and targets | ||
|
||
name: Builds | ||
on: | ||
workflow_call: | ||
inputs: | ||
targets: | ||
type: string | ||
description: Build targets | ||
default: all,fdctl | ||
machines: | ||
type: string | ||
description: Build architectures | ||
default: linux_gcc_x86_64,linux_clang_x86_64 | ||
gcc: | ||
type: string | ||
description: GCC compiler versions | ||
default: gcc-8.5.0,gcc-12.4.0 | ||
description: GCC versions to use | ||
default: all | ||
clang: | ||
type: string | ||
description: Clang compiler versions | ||
default: clang-17.0.6 | ||
description: Clang versions to use | ||
default: all | ||
machine: | ||
type: string | ||
description: Machines to build for | ||
default: all | ||
verbose: | ||
type: boolean | ||
description: Show error outputs | ||
default: false | ||
exit_on_err: | ||
type: boolean | ||
description: Exit on the first error | ||
default: false | ||
workflow_dispatch: | ||
inputs: | ||
targets: | ||
type: string | ||
description: Build targets (comma-separated) | ||
default: all,fdctl | ||
machines: | ||
type: string | ||
description: Build architectures (comma-separated) | ||
default: linux_gcc_x86_64,linux_clang_x86_64 | ||
gcc: | ||
type: string | ||
description: GCC compiler versions (comma-separated) | ||
default: gcc-8.5.0,gcc-12.4.0 | ||
description: GCC versions to use (comma-separated | none | all) | ||
default: all | ||
clang: | ||
type: string | ||
description: Clang compiler versions (comma-separated) | ||
default: clang-17.0.6 | ||
description: Clang versions to use (comma-separated | none | all) | ||
default: all | ||
machine: | ||
type: string | ||
description: Machines to build for (comma-separated | all) | ||
default: all | ||
verbose: | ||
type: boolean | ||
description: Show error outputs | ||
default: false | ||
exit_on_err: | ||
type: boolean | ||
description: Exit on the first error | ||
default: false | ||
concurrency: | ||
group: builds_${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
build_gcc: | ||
runs-on: X64 | ||
if: "${{ inputs.gcc }}" != "none" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: dtolnay/[email protected] | ||
|
||
- name: Build command line args | ||
run: | | ||
ARGS="" | ||
# verbose | ||
if [ "${{ inputs.verbose }}" == "true" ]; then | ||
ARGS="$ARGS --verbose" | ||
fi | ||
# exit-on-err | ||
if [ "${{ inputs.exit_on_err }}" == "true" ]; then | ||
ARGS="$ARGS --exit-on-err" | ||
fi | ||
# machine | ||
if [ "${{ inputs.machine }}" != "all" ]; then | ||
ARGS="$ARGS --machines ${{ inputs.machine }}" | ||
fi | ||
# gcc | ||
if [ "${{ inputs.gcc }}" != "all" ]; then | ||
ARGS="$ARGS --gcc-versions ${{ inputs.gcc }}" | ||
fi | ||
echo "BUILD_ARGS=$ARGS" >> $GITHUB_ENV | ||
- name: Run gcc builds | ||
run: | | ||
contrib/build.sh --no-rust --no-clang ${{ env.BUILD_ARGS }} | ||
build_clang: | ||
runs-on: 512G | ||
if: "${{ inputs.clang }}" != "none" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: dtolnay/[email protected] | ||
|
||
- uses: ./.github/actions/deps | ||
- name: Build command line args | ||
run: | | ||
ARGS="" | ||
# verbose | ||
if [ "${{ inputs.verbose }}" == "true" ]; then | ||
ARGS="$ARGS --verbose" | ||
fi | ||
# exit-on-err | ||
if [ "${{ inputs.exit_on_err }}" == "true" ]; then | ||
ARGS="$ARGS --exit-on-err" | ||
fi | ||
# machine | ||
if [ "${{ inputs.machine }}" != "all" ]; then | ||
ARGS="$ARGS --machines ${{ inputs.machine }}" | ||
fi | ||
# clang | ||
if [ "${{ inputs.clang }}" != "all" ]; then | ||
ARGS="$ARGS --clang-versions ${{ inputs.clang }}" | ||
fi | ||
echo "ARGS=$ARGS" >> $GITHUB_ENV | ||
- name: Start build | ||
- name: Run clang builds | ||
run: | | ||
contrib/build.sh --no-deps --no-rust \ | ||
--targets ${{ inputs.targets }} \ | ||
--machines ${{ inputs.machines }} \ | ||
--gcc-versions ${{ inputs.gcc || 'none --no-gcc' }} \ | ||
--clang-versions ${{ inputs.clang || 'none --no-clang' }} | ||
contrib/build.sh --no-rust --no-gcc ${{ env.BUILD_ARGS }} |
Oops, something went wrong.