Skip to content

[CI] Remove artifacts cleanup task #10230

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 1 commit into from
Jul 6, 2023
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
32 changes: 0 additions & 32 deletions .github/workflows/sycl_cleanup.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/sycl_linux_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ on:
description: 'Merge default branch after the checkout'
type: boolean
default: true
retention-days:
description: 'Artifacts retention period'
type: string
default: 3

jobs:
build:
Expand Down Expand Up @@ -197,6 +201,7 @@ jobs:
with:
name: sycl_linux_${{ inputs.build_artifact_suffix }}
path: ${{ inputs.artifact_archive_name }}
retention-days: ${{ inputs.retention-days }}

aws-start:
name: Start AWS
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/sycl_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
build_artifact_suffix: default-2204
build_configure_extra_args: '--hip --cuda --enable-esimd-emulator'
merge: false
retention-days: 90

ubuntu2204_opaque_pointers_build_test:
if: github.repository == 'intel/llvm'
Expand All @@ -44,6 +45,8 @@ jobs:
name: Windows
if: github.repository == 'intel/llvm'
uses: ./.github/workflows/sycl_windows_build_and_test.yml
with:
retention-days: 90

ubuntu2204_docker_build_push:
if: github.repository == 'intel/llvm'
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/sycl_windows_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ on:
artifact_archive_name:
type: string
default: llvm_sycl.tar.gz
retention-days:
description: 'Artifacts retention period'
type: string
default: 3

jobs:
build:
Expand Down Expand Up @@ -122,6 +126,7 @@ jobs:
with:
name: sycl_windows_default
path: ${{ inputs.artifact_archive_name }}
retention-days: ${{ inputs.retention-days }}

e2e-tests:
needs: build
Expand Down