74 lines
3.4 KiB
YAML
74 lines
3.4 KiB
YAML
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
# ***************************************************************************
|
|
# * *
|
|
# * Copyright (c) 2023 0penBrain. *
|
|
# * *
|
|
# * This file is part of FreeCAD. *
|
|
# * *
|
|
# * FreeCAD is free software: you can redistribute it and/or modify it *
|
|
# * under the terms of the GNU Lesser General Public License as *
|
|
# * published by the Free Software Foundation, either version 2.1 of the *
|
|
# * License, or (at your option) any later version. *
|
|
# * *
|
|
# * FreeCAD is distributed in the hope that it will be useful, but *
|
|
# * WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
|
|
# * Lesser General Public License for more details. *
|
|
# * *
|
|
# * You should have received a copy of the GNU Lesser General Public *
|
|
# * License along with FreeCAD. If not, see *
|
|
# * <https://www.gnu.org/licenses/>. *
|
|
# * *
|
|
# ***************************************************************************
|
|
|
|
name: build
|
|
description: "macOS: build application"
|
|
|
|
inputs:
|
|
builddir:
|
|
description: "Directory where build will happen"
|
|
required: true
|
|
logFile:
|
|
description: "Path for log file"
|
|
required: true
|
|
errorFile:
|
|
description: "Path to error file"
|
|
required: true
|
|
reportFile:
|
|
description: "Path for report file"
|
|
required: true
|
|
extraParameters:
|
|
description: "Extra parameters to CMake build"
|
|
required: false
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Build
|
|
id: build
|
|
shell: bash -l {0}
|
|
run: |
|
|
(cmake --build ${{ inputs.builddir }} -j$(nproc) ${{ inputs.extraParameters }}) \
|
|
2> >(tee -a ${{ inputs.errorFile }}) | tee -a ${{ inputs.logFile }}
|
|
- name: Write report
|
|
shell: bash -l {0}
|
|
if: always()
|
|
run: |
|
|
if [ ${{ steps.build.outcome }} == 'success' ]
|
|
then
|
|
echo "<details><summary>:heavy_check_mark: CMake build succeeded</summary>" >> ${{ inputs.reportFile }}
|
|
else
|
|
echo "<details><summary>:fire: CMake build failed</summary>" >> ${{ inputs.reportFile }}
|
|
fi
|
|
echo "" >> ${{ inputs.reportFile }}
|
|
echo "Build Error Log (stderr output):" >> ${{ inputs.reportFile }}
|
|
echo '```' >> ${{ inputs.reportFile }}
|
|
cat ${{ inputs.errorFile }} >> ${{ inputs.reportFile }}
|
|
echo '```' >> ${{ inputs.reportFile }}
|
|
echo "Build Log (only built targets reported):" >> ${{ inputs.reportFile }}
|
|
echo '```' >> ${{ inputs.reportFile }}
|
|
cat ${{ inputs.logFile }} | sed -ne "/Built target/p" >> ${{ inputs.reportFile }}
|
|
echo '```' >> ${{ inputs.reportFile }}
|
|
echo "</details>">> ${{ inputs.reportFile }}
|
|
echo "" >> ${{ inputs.reportFile }}
|