Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/sycl-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ on:
build_artifact_suffix:
type: string
required: true
build_target:
type: string
required: false
default: sycl-toolchain
artifact_archive_name:
type: string
default: llvm_sycl.tar.zst
Expand Down Expand Up @@ -177,7 +181,8 @@ jobs:
-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=SPIRV
- name: Compile
id: build
run: cmake --build $GITHUB_WORKSPACE/build --target sycl-toolchain
# Emulate default value for manual dispatch as we've run out of available arguments.
run: cmake --build $GITHUB_WORKSPACE/build --target ${{ inputs.build_target || 'sycl-toolchain' }}
- name: check-llvm
if: always() && !cancelled() && contains(inputs.changes, 'llvm')
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/sycl-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
build_cache_suffix: sprod_shared
build_artifact_suffix: sprod_shared
build_configure_extra_args: '--shared-libs --hip --cuda --native_cpu --no-assertions'
build_target: all

artifact_archive_name: sycl_linux_shared.tar.zst

Expand Down
Loading