Adding Permissive Learning Mode Tool #305
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
| # Entry point for GHA PR/CI validation. Mirrors the 1ES `1ES.Build.yml` | |
| # split: this file orchestrates, each stage lives in its own reusable. | |
| name: Build | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main, 'feature/*', 'user/*'] | |
| workflow_call: | |
| workflow_dispatch: | |
| concurrency: | |
| group: build-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| versioning-checks: | |
| uses: ./.github/workflows/Versioning.Checks.Job.yml | |
| lint: | |
| uses: ./.github/workflows/Lint.Job.yml | |
| windows: | |
| uses: ./.github/workflows/Build.Windows.Job.yml | |
| linux: | |
| uses: ./.github/workflows/Build.Linux.Job.yml | |
| macos: | |
| uses: ./.github/workflows/Build.MacOS.Job.yml | |
| sdk-unit-tests: | |
| uses: ./.github/workflows/SDK.Unit.Test.Job.yml | |
| package-npm-sdk: | |
| needs: [windows, linux, macos] | |
| uses: ./.github/workflows/Package.NpmSdk.Job.yml | |
| sdk-integration-tests: | |
| needs: package-npm-sdk | |
| uses: ./.github/workflows/SDK.Integration.Test.Job.yml | |
| plm-integration-tests: | |
| needs: windows | |
| uses: ./.github/workflows/PLM.Integration.Test.Job.yml |