Page MenuHomePhorge

build.yml
No OneTemporary

Size
2 KB
Referenced Files
None
Subscribers
None

build.yml

name: Build All Platforms
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false
jobs:
prepare:
runs-on: ubuntu-latest
if: |
github.event_name == 'workflow_dispatch' ||
github.event_name == 'pull_request' ||
(github.event_name == 'push' && contains(github.event.head_commit.message, '[ci] trigger build'))
outputs:
timestamp: ${{ steps.timestamp.outputs.value }}
steps:
- id: timestamp
run: echo "value=$(date +%s)" >> $GITHUB_OUTPUT
macos-aarch64:
needs: prepare
uses: ./.github/workflows/build-macos-aarch64.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
macos-x64:
needs: prepare
uses: ./.github/workflows/build-macos-x64.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
macos-aarch64-mbedtls:
needs: prepare
uses: ./.github/workflows/build-macos-aarch64-mbedtls.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
macos-x64-mbedtls:
needs: prepare
uses: ./.github/workflows/build-macos-x64-mbedtls.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
linux-glibc-x64:
needs: prepare
uses: ./.github/workflows/build-linux-glibc-x64.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
linux-glibc-aarch64:
needs: prepare
uses: ./.github/workflows/build-linux-glibc-aarch64.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
linux-musl-x64:
needs: prepare
uses: ./.github/workflows/build-linux-musl-x64.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
linux-musl-aarch64:
needs: prepare
uses: ./.github/workflows/build-linux-musl-aarch64.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}
windows-x64:
needs: prepare
uses: ./.github/workflows/build-windows-x64.yml
with:
build_timestamp: ${{ needs.prepare.outputs.timestamp }}

File Metadata

Mime Type
text/plain
Expires
Sun, May 3, 9:47 AM (8 h, 13 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
532399
Default Alt Text
build.yml (2 KB)

Event Timeline