Skip to content

Commit

Permalink
[CI] Fix a few typos in GitHub Actions configs (#5084)
Browse files Browse the repository at this point in the history
Fix duplicate name of post-commit configuration and incorrect logic for main pipeline config selection.
  • Loading branch information
alexbatashev authored Dec 4, 2021
1 parent 3b1ba34 commit 2247466
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sycl_linux_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
env:
INPUTS: ${{ toJSON(inputs) }}
run: |
if [[ "$GITHUB_EVENT_NAME" != "workflow_call" ]]; then
if [[ "$GITHUB_WORKFLOW" == "Reusable SYCL Linux build and test workflow" ]]; then
INPUTS="{
\"cc\":\"gcc\",
\"cxx\":\"g++\",
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sycl_post_commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ jobs:
name: Linux Default
uses: intel/llvm/.github/workflows/sycl_linux_build_and_test.yml@sycl
with:
build_cache_root: "__w/llvm"
build_cache_root: "/__w/llvm"
build_github_cache: true
build_artifact_suffix: default
linux_no_assert:
name: Linux Default
name: Linux (no assert)
uses: intel/llvm/.github/workflows/sycl_linux_build_and_test.yml@sycl
with:
build_cache_root: "__w/llvm"
build_cache_root: "/__w/llvm"
build_github_cache: true
build_cache_suffix: gcc_no_assertions
build_artifact_suffix: gcc_no_assertions
Expand Down

0 comments on commit 2247466

Please sign in to comment.