- Timestamp:
- 06/05/2024 07:27:33 PM (14 months ago)
- Location:
- trunk/.github/workflows
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.github/workflows/reusable-test-core-build-process.yml
r58345 r58351 53 53 # - Uploads the pull request number as an artifact. 54 54 build-process-tests: 55 name: Core running from ${{ inputs.directory }} / ${{ inputs.os == 'macos-latest' && 'MacOS' || inputs.os == 'windows-latest'&& 'Windows' || 'Linux' }}55 name: Core running from ${{ inputs.directory }} / ${{ contains( inputs.os, 'macos-' ) && 'MacOS' || contains( inputs.os, 'windows-' ) && 'Windows' || 'Linux' }} 56 56 runs-on: ${{ inputs.os }} 57 57 timeout-minutes: 20 -
trunk/.github/workflows/reusable-test-gutenberg-build-process.yml
r58165 r58351 38 38 # - Ensures version-controlled files are not modified or deleted. 39 39 build-process-tests: 40 name: Gutenberg running from ${{ inputs.directory }} / ${{ inputs.os == 'macos-latest' && 'MacOS' || inputs.os == 'windows-latest'&& 'Windows' || 'Linux' }}40 name: Gutenberg running from ${{ inputs.directory }} / ${{ contains( inputs.os, 'macos-' ) && 'MacOS' || contains( inputs.os, 'windows-' ) && 'Windows' || 'Linux' }} 41 41 runs-on: ${{ inputs.os }} 42 42 timeout-minutes: 30
Note: See TracChangeset
for help on using the changeset viewer.