Skip to content

[CI] More typo fixes in Nightly build #5088

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 11, 2021
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
5 changes: 3 additions & 2 deletions .github/workflows/sycl_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ jobs:
if: github.repository == 'intel/llvm'
uses: intel/llvm/.github/workflows/sycl_linux_build_and_test.yml@sycl
with:
build_runs_on: sycl-precommit-linux
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this a machine label? I suggest using another label to avoid confusion or better multiple labels (if possible). E.g. machine with sycl and linux labels or we can add nightly if there are additional requirements for nightly testing.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's the machine label. Let's discuss this offline.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay. :)

build_github_cache: true
build_cache_root: "/__w/llvm"
build_cache_root: "/__w/"
build_artifact_suffix: default
ubuntu2004_docker_build_push:
if: github.repository == 'intel/llvm'
Expand All @@ -21,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: sycl_nightly_ubuntu2004
name: sycl_linux_default
path: devops/
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down
2 changes: 1 addition & 1 deletion devops/containers/ubuntu2004_preinstalled.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG base_image=ghcr.io/intel/llvm/ubuntu2004_intel_drivers
FROM $base_image:$base_tag

COPY scripts/drivers_entrypoint.sh /drivers_entrypoint.sh
ADD llvm_sycl.tar.gz /usr
ADD llvm_sycl.tar.xz /usr

ENTRYPOINT ["/bin/bash", "/drivers_entrypoint.sh"]