Skip to content

Commit

Permalink
remove bash invocation for scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
napetrov committed Sep 13, 2023
1 parent 39ae618 commit 74fefc7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .ci/pipeline/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
vmImage: 'ubuntu-22.04'
steps:
- script: |
bash .ci/env/apt.sh clang-format
.ci/env/apt.sh clang-format
displayName: 'apt-get'
- script: |
.ci/scripts/clang-format.sh
Expand All @@ -44,7 +44,7 @@ jobs:
vmImage: 'ubuntu-22.04'
steps:
- script: |
bash .ci/env/apt.sh dev-base
.ci/env/apt.sh dev-base
conda create -n ci-env -q -y -c intel -c conda-forge impi-devel=2021.10.0
displayName: 'apt-get and conda install'
- script: |
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
vmImage: 'ubuntu-22.04'
steps:
- script: |
bash .ci/env/apt.sh dev-base
.ci/env/apt.sh dev-base
conda create -n ci-env -q -y -c intel -c conda-forge impi-devel=2021.8.0
displayName: 'apt-get and conda install'
- script: |
Expand Down Expand Up @@ -134,11 +134,11 @@ jobs:
vmImage: 'ubuntu-22.04'
steps:
- script: |
bash .ci/env/apt.sh dev-base
.ci/env/apt.sh dev-base
conda create -n ci-env -q -y -c conda-forge -c intel impi-devel=2021.10.0
displayName: 'apt-get and conda install'
- script: |
bash .ci/env/apt.sh install_dpcpp
.ci/env/apt.sh install_dpcpp
displayName: 'dpcpp installation'
- script: |
source /opt/intel/oneapi/compiler/latest/env/vars.sh
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
inputs:
artifact: '$(platform.type) build'
path: $(Pipeline.Workspace)
- script: bash .ci/env/apt.sh dev-base
- script: .ci/env/apt.sh dev-base
displayName: 'apt-get'
- script: |
.ci/scripts/describe_system.sh
Expand Down Expand Up @@ -439,7 +439,7 @@ jobs:
displayName: 'pacman'
- script: |
set PATH=C:\msys64\usr\bin;%PATH%
bash .ci/scripts/describe_system.sh
.ci/scripts/describe_system.sh
displayName: 'System info'
- script: |
.\.ci\scripts\build.bat daal vc avx2
Expand All @@ -463,7 +463,7 @@ jobs:
displayName: 'oneapi/cpp examples'
- script: |
set PATH=C:\msys64\usr\bin;%PATH%
bash deploy/nuget/prepare_dal_nuget.sh --release-dir $(release.dir) --build-nupkg yes
deploy/nuget/prepare_dal_nuget.sh --release-dir $(release.dir) --build-nupkg yes
tree -h -I include __nuget/inteldal*/
ls -lh __nuget/inteldal*.nupkg
displayName: 'nuget pkg'
Expand Down

0 comments on commit 74fefc7

Please sign in to comment.