Merge branch 'dev' into feat/installer-windows #1
Workflow file for this run
This file contains 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-windows-x64 | |
on: | |
workflow_call: | |
inputs: | |
ref: | |
required: true | |
type: string | |
default: 'refs/heads/main' | |
public_provider: | |
required: true | |
type: string | |
default: none | |
description: 'none: build only, github: build and publish to github, aws s3: build and publish to aws s3' | |
new_version: | |
required: true | |
type: string | |
default: '' | |
upload_url: | |
required: true | |
type: string | |
default: '' | |
runs-on: | |
required: false | |
type: string | |
default: 'windows-cuda-12-0' | |
description: 'The runner to use for this job' | |
cmake-flags: | |
required: false | |
type: string | |
default: '' | |
description: 'The cmake flags to use for this job' | |
build-deps-cmake-flags: | |
required: false | |
type: string | |
default: '' | |
description: 'The cmake flags to use for this job' | |
ccache-dir: | |
required: false | |
type: string | |
default: 'C:\Users\ContainerAdministrator\AppData\Local\ccache' | |
description: 'The ccache directory to use for this job' | |
channel: | |
required: true | |
type: string | |
default: 'nightly' | |
description: 'The channel to use for this job' | |
secrets: | |
MINIO_BUCKET_NAME: | |
required: false | |
MINIO_ENDPOINT: | |
required: false | |
MINIO_ACCESS_KEY_ID: | |
required: false | |
MINIO_SECRET_ACCESS_KEY: | |
required: false | |
MINIO_REGION: | |
required: false | |
DEVELOPER_ID: | |
required: false | |
AZURE_KEY_VAULT_URI: | |
required: false | |
AZURE_CLIENT_ID: | |
required: false | |
AZURE_TENANT_ID: | |
required: false | |
AZURE_CLIENT_SECRET: | |
required: false | |
AZURE_CERT_NAME: | |
required: false | |
DELTA_AWS_S3_BUCKET_NAME: | |
required: false | |
DELTA_AWS_ACCESS_KEY_ID: | |
required: false | |
DELTA_AWS_SECRET_ACCESS_KEY: | |
required: false | |
DELTA_AWS_REGION: | |
required: false |