Settings: send query parameters on http(s) settings urls #1451
Workflow file for this run
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: Build feature | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| # Run CI for PRs into main, and into long-lived feature/* branches so | |
| # contributors can stack fix commits onto an in-progress feature branch. | |
| # Signing still only happens on push to main (see build-windows.yml). | |
| branches: | |
| - "main" | |
| - "feature/**" | |
| jobs: | |
| get-version: | |
| uses: ./.github/workflows/get-version.yml | |
| create-test-bundle: | |
| uses: ./.github/workflows/create-test-bundle.yml | |
| # Non-blocking initially: surfaces real issues without gating PRs while the | |
| # team triages what falls out. Drop continue-on-error to make it required. | |
| sanitizer-tests: | |
| needs: get-version | |
| uses: ./.github/workflows/tests-sanitizers.yml | |
| with: | |
| version: ${{ needs.get-version.outputs.version }} | |
| build-server-x64: | |
| needs: [get-version, create-test-bundle] | |
| uses: ./.github/workflows/build-windows.yml | |
| with: | |
| architecture: x64 | |
| version: ${{ needs.get-version.outputs.version }} | |
| secrets: | |
| AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
| AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
| AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
| build-server-x86: | |
| needs: [get-version, create-test-bundle] | |
| uses: ./.github/workflows/build-windows.yml | |
| with: | |
| architecture: x86 | |
| version: ${{ needs.get-version.outputs.version }} | |
| secrets: | |
| AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
| AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
| AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
| build-x86-static: | |
| needs: get-version | |
| uses: ./.github/workflows/build-windows-legacy.yml | |
| with: | |
| architecture: x86 | |
| version: ${{ needs.get-version.outputs.version }} | |
| secrets: | |
| AZURE_TENANT_ID: ${{ secrets.AZURE_TENANT_ID }} | |
| AZURE_CLIENT_ID: ${{ secrets.AZURE_CLIENT_ID }} | |
| AZURE_CLIENT_SECRET: ${{ secrets.AZURE_CLIENT_SECRET }} | |
| build-debian: | |
| needs: [get-version, create-test-bundle] | |
| uses: ./.github/workflows/build-debian.yml | |
| with: | |
| architecture: x64 | |
| version: ${{ needs.get-version.outputs.version }} | |
| build-redhat: | |
| needs: [get-version, create-test-bundle] | |
| uses: ./.github/workflows/build-redhat.yml | |
| with: | |
| architecture: x64 | |
| version: ${{ needs.get-version.outputs.version }} | |
| build-web: | |
| needs: get-version | |
| uses: ./.github/workflows/build-web.yml | |
| with: | |
| version: ${{ needs.get-version.outputs.version }} |