Skip to content

Commit

Permalink
Support picking llvm sha
Browse files Browse the repository at this point in the history
  • Loading branch information
Zentrik committed Sep 6, 2024
1 parent 5663e37 commit 5ae8c84
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
pull_request:
push:
workflow_dispatch:
inputs:
LLVM_VERSION:
description: 'LLVM sha to build'
required: false
type: string
schedule:
- cron: '0 */8 * * *'

Expand All @@ -28,7 +33,7 @@ jobs:
BINARYBUILDER_USE_CCACHE: true
BINARYBUILDER_AUTOMATIC_APPLE: true
BINARYBUILDER_STORAGE_DIR: ${{ github.workspace }}/binarybuilder_storage
LLVM_VERSION: ${{ needs.fetch_llvm_version.outputs.LLVM_VERSION }}
LLVM_VERSION: ${{ github.event.inputs.LLVM_VERSION || needs.fetch_llvm_version.outputs.LLVM_VERSION }}
LLVM_VERSION_MAJOR: ${{ needs.fetch_llvm_version.outputs.LLVM_VERSION_MAJOR }}
strategy:
fail-fast: false
Expand Down

0 comments on commit 5ae8c84

Please sign in to comment.