Skip to content

Commit

Permalink
ammend boolean matching
Browse files Browse the repository at this point in the history
  • Loading branch information
ianayl committed Sep 13, 2024
1 parent 90575fe commit 8dfeff6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
# # retention-days: 7

run_benchmarks:
name: Run benchmarks (${{ inputs.name }})
name: ${{ inputs.name }}
needs: [ check_build ]
runs-on: ${{ fromJSON(inputs.runner) }}
container:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sycl-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
build:
name: Build + LIT
runs-on: [Linux, build]
if: ${{ inputs.skip_build != 'true' }}
if: ${{ inputs.skip_build != true }}
container:
image: ${{ inputs.build_image }}
options: -u 1001:1001
Expand Down Expand Up @@ -259,9 +259,9 @@ jobs:
retention-days: ${{ inputs.retention-days }}

skip_build:
name: Build skipped (${{ inputs.skip_reason }})
name: Skipping build
runs-on: [Linux, aux-tasks]
if: ${{ inputs.skip_build == 'true' }}
if: ${{ inputs.skip_build == true }}
outputs:
build_conclusion: "skipped"
artifact_archive_name: ""
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sycl-linux-precommit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ jobs:
# image: ghcr.io/intel/llvm/ubuntu2204_build:latest
# image_options: -u 1001 --gpus all --cap-add SYS_ADMIN
# target_devices: ext_oneapi_cuda:gpu
- name: Intel
- name: Run benchmarks on Intel
runner: '["Linux", "gen12"]'
image: ghcr.io/intel/llvm/ubuntu2204_intel_drivers:latest
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
Expand Down

0 comments on commit 8dfeff6

Please sign in to comment.