Bump ubuntu from 7c06e91 to 9cbed75 in /.docker/ubuntu-24.04
#5738
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 Darwin Framework | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - release/* | |
| pull_request: | |
| branches: | |
| - main | |
| - release/* | |
| concurrency: | |
| # Cancel any workflow currently in progress for the same PR. | |
| # Allow running concurrently with any other commits. | |
| group: darwin-frameworks-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| build-all-frameworks: | |
| strategy: | |
| matrix: | |
| tls: ["quictls", "openssl"] | |
| name: Build All Darwin Frameworks (Release) | |
| uses: ./.github/workflows/build-reuse-darwin-framework.yml | |
| with: | |
| config: 'Release' | |
| repo: ${{ github.repository }} | |
| tls: ${{ matrix.tls }} |