Skip to content
Draft
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
27 changes: 27 additions & 0 deletions .ci/pipeline/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ jobs:
pool:
vmImage: '$(VM_IMAGE)'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: |
.ci/env/apt.sh clang-format
.ci/env/editorconfig-checker.sh
Expand All @@ -85,6 +88,9 @@ jobs:
pool:
vmImage: '$(VM_IMAGE)'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: |
.ci/env/apt.sh dev-base
displayName: 'apt-get install'
Expand Down Expand Up @@ -151,6 +157,9 @@ jobs:
pool:
vmImage: '$(VM_IMAGE)'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: |
.ci/env/apt.sh dev-base
displayName: 'apt-get install'
Expand Down Expand Up @@ -201,6 +210,9 @@ jobs:
pool:
vmImage: '$(VM_IMAGE)'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: |
.ci/env/apt.sh miniforge
displayName: 'apt-get install'
Expand Down Expand Up @@ -288,6 +300,9 @@ jobs:
pool:
vmImage: 'ubuntu-24.04'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: |
.ci/env/apt.sh dev-base
displayName: 'apt-get install'
Expand Down Expand Up @@ -377,6 +392,9 @@ jobs:
BAZEL_VERSION: $(Pipeline.Workspace)/bazelisk-linux-amd64
BAZEL_CACHE_MAX_SIZE_KB: 4194304 # Size in kilobytes ~ 4Gb
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: |
.ci/env/apt.sh opencl
displayName: 'install opencl'
Expand Down Expand Up @@ -585,6 +603,9 @@ jobs:
pool:
vmImage: '$(WIN_VM_IMAGE)'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: .ci/scripts/install_basekit.bat $(WINDOWS_BASEKIT_URL) $(WINDOWS_DPCPP_COMPONENTS)
displayName: 'Install oneAPI Base Toolkit'
- powershell: |
Expand Down Expand Up @@ -691,6 +712,9 @@ jobs:
pool:
vmImage: '$(WIN_VM_IMAGE)'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: .ci/scripts/install_basekit.bat $(WINDOWS_BASEKIT_URL) $(WINDOWS_DPCPP_COMPONENTS)
displayName: Install oneAPI Base Toolkit
- script: |
Expand Down Expand Up @@ -755,6 +779,9 @@ jobs:
pool:
vmImage: '$(WIN_VM_IMAGE)'
steps:
- checkout: self
fetchTags: false
persistCredentials: true
- script: .ci/scripts/install_basekit.bat $(WINDOWS_BASEKIT_URL) $(WINDOWS_DPCPP_COMPONENTS)
displayName: Install oneAPI Base Toolkit
- script: |
Expand Down
4 changes: 4 additions & 0 deletions .ci/pipeline/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ pool:
vmImage: 'ubuntu-latest'

steps:
- checkout: self
fetchTags: false
persistCredentials: true

- script: |
set -euo pipefail
cd docs
Expand Down
Loading