build: Remove conan_provider.cmake on Visual Studio 2022 clean (#2295) #471
This file contains hidden or 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
| name: Continuous | |
| on: | |
| push: | |
| branches: | |
| - 'develop' | |
| paths-ignore: | |
| - '.github/workflows/cacheConan.yml' | |
| - '.github/workflows/cacheNix.yml' | |
| - '.github/workflows/issues.yml' | |
| - '.github/workflows/pr.yml' | |
| - '.github/workflows/release.yml' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - 'README.md' | |
| jobs: | |
| Checkout: | |
| if: github.event.repository.fork == false | |
| uses: "./.github/workflows/_checkout.yml" | |
| with: | |
| publishType: 'continuous' | |
| QC: | |
| needs: [Checkout] | |
| uses: "./.github/workflows/_qc.yml" | |
| with: | |
| nixHash: ${{ needs.Checkout.outputs.nixHash }} | |
| BuildAndPackage: | |
| needs: [Checkout] | |
| uses: "./.github/workflows/_build_and_package.yml" | |
| with: | |
| benchmark: false | |
| publishBenchmarks: false | |
| currentVersion: ${{ needs.Checkout.outputs.currentVersion }} | |
| msvcVersion: ${{ needs.Checkout.outputs.msvcVersion }} | |
| osxTargetDeploymentVersion: ${{ needs.Checkout.outputs.osxTargetDeploymentVersion }} | |
| osxRunner: ${{ needs.Checkout.outputs.osxRunner }} | |
| qtVersion: ${{ needs.Checkout.outputs.qtVersion }} | |
| antlrVersion: ${{ needs.Checkout.outputs.antlrVersion }} | |
| conanHash: ${{ needs.Checkout.outputs.conanHash }} | |
| nixHash: ${{ needs.Checkout.outputs.nixHash }} | |
| secrets: inherit | |
| Web: | |
| needs: [Checkout] | |
| uses: "./.github/workflows/_website.yml" | |
| with: | |
| publishType: 'continuous' | |
| displayMajorVersion: ${{ needs.Checkout.outputs.currentVersionMajor }} | |
| displayMinorVersion: ${{ needs.Checkout.outputs.currentVersionMinor }} | |
| hugoVersion: ${{ needs.Checkout.outputs.hugoVersion }} | |
| secrets: inherit | |
| Publish: | |
| needs: [Checkout,BuildAndPackage,Web] | |
| uses: "./.github/workflows/_publish.yml" | |
| with: | |
| publishType: 'continuous' | |
| currentVersion: ${{ needs.Checkout.outputs.currentVersion }} | |
| releaseTag: 'continuous' | |
| releaseName: "Development Release ${{ needs.Checkout.outputs.currentVersion }} @ ${{ needs.Checkout.outputs.currentShortHash }}" | |
| releaseBodyFile: ./ChangeLog.md | |
| apptainerVersion: ${{ needs.Checkout.outputs.apptainerVersion }} | |
| secrets: inherit |