109 lines
4.0 KiB
YAML
109 lines
4.0 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/>. *
|
|
# * *
|
|
# ***************************************************************************
|
|
|
|
# This is the master workflow for CI of FreeCAD.
|
|
# It (only) aims at properly organizing the sub-workflows.
|
|
|
|
name: FreeCAD master CI
|
|
|
|
on: [workflow_dispatch, push, pull_request]
|
|
|
|
concurrency:
|
|
group: FC-CI-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
|
|
Prepare:
|
|
uses: ./.github/workflows/sub_prepare.yml
|
|
with:
|
|
artifactBasename: Prepare-${{ github.run_id }}
|
|
|
|
MacOS_13_Conda_Apple:
|
|
needs: [Prepare]
|
|
uses: ./.github/workflows/sub_buildMacOSCondaApple.yml
|
|
with:
|
|
artifactBasename: MacOS_13_Conda_Apple-${{ github.run_id }}
|
|
|
|
# MacOS_13_Conda_Intel:
|
|
# needs: [Prepare]
|
|
# uses: ./.github/workflows/sub_buildMacOSCondaIntel.yml
|
|
# with:
|
|
# artifactBasename: MacOS_13_Conda_Intel-${{ github.run_id }}
|
|
|
|
Ubuntu_20-04:
|
|
needs: [Prepare]
|
|
uses: ./.github/workflows/sub_buildUbuntu2004.yml
|
|
with:
|
|
artifactBasename: Ubuntu_20-04-${{ github.run_id }}
|
|
|
|
Ubuntu_22-04_Conda:
|
|
needs: [Prepare]
|
|
uses: ./.github/workflows/sub_buildUbuntu2204Conda.yml
|
|
with:
|
|
artifactBasename: Ubuntu_22-04_Conda-${{ github.run_id }}
|
|
|
|
Ubuntu_22-04_Conda_Qt6:
|
|
needs: [Prepare]
|
|
uses: ./.github/workflows/sub_buildUbuntu2204CondaQt6.yml
|
|
with:
|
|
artifactBasename: Ubuntu_22-04_Conda-Qt6-${{ github.run_id }}
|
|
|
|
Windows:
|
|
needs: [Prepare]
|
|
uses: ./.github/workflows/sub_buildWindows.yml
|
|
with:
|
|
artifactBasename: Windows-${{ github.run_id }}
|
|
|
|
## Disable until the following issue is resolved: https://github.com/mamba-org/mamba/issues/3292
|
|
# Windows_Conda:
|
|
# needs: [Prepare]
|
|
# uses: ./.github/workflows/sub_buildWindowsConda.yml
|
|
# with:
|
|
# artifactBasename: Windows_Conda-${{ github.run_id }}
|
|
|
|
Lint:
|
|
needs: [Prepare]
|
|
uses: ./.github/workflows/sub_lint.yml
|
|
with:
|
|
artifactBasename: Lint-${{ github.run_id }}
|
|
changedFiles: ${{ needs.Prepare.outputs.changedFiles }}
|
|
changedCppFiles: ${{ needs.Prepare.outputs.changedCppFiles }}
|
|
changedPythonFiles: ${{ needs.Prepare.outputs.changedPythonFiles }}
|
|
|
|
WrapUp:
|
|
needs: [
|
|
Prepare,
|
|
MacOS_13_Conda_Apple,
|
|
# MacOS_13_Conda_Intel,
|
|
Ubuntu_20-04,
|
|
Ubuntu_22-04_Conda,
|
|
Windows,
|
|
# Windows_Conda,
|
|
Lint
|
|
]
|
|
if: always()
|
|
uses: ./.github/workflows/sub_wrapup.yml
|
|
with:
|
|
previousSteps: ${{ toJSON(needs) }}
|