Skip to content

Commit

Permalink
[CI] Remove intel/llvm-test-suite from llvm_test_suite action (intel#…
Browse files Browse the repository at this point in the history
…8794)

We've completed the move of intel/llvm-test-suite into in-tree
sycl/test-e2e location.
  • Loading branch information
aelovikov-intel authored Mar 27, 2023
1 parent ee211b6 commit 8996a8b
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions devops/actions/llvm_test_suite/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,7 @@ runs:
steps:
- run: |
cp -r /actions .
git config --global --add safe.directory /__w/repo_cache/intel/llvm-test-suite
shell: bash
- name: Checkout LLVM Test Suite
uses: ./actions/cached_checkout
with:
path: llvm_test_suite
repository: 'intel/llvm-test-suite'
ref: ${{ inputs.test_ref }}
default_branch: 'intel'
cache_path: "/__w/repo_cache/"
- name: Download compiler toolchain
uses: actions/download-artifact@v3
with:
Expand All @@ -55,7 +46,6 @@ runs:
export PATH=$PWD/toolchain/bin/:$PATH
# TODO: Rename check_sycl_all input
cmake -GNinja -B./build-e2e -S./llvm/sycl/test-e2e -DSYCL_TEST_E2E_TARGETS="${{ inputs.check_sycl_all }}" -DCMAKE_CXX_COMPILER="$PWD/toolchain/bin/clang++" -DLLVM_LIT="$PWD/llvm/llvm/utils/lit/lit.py" ${{ inputs.cmake_args }}
cmake -GNinja -B./build -S./llvm_test_suite -DTEST_SUITE_SUBDIRS=SYCL -DCHECK_SYCL_ALL="${{ inputs.check_sycl_all }}" -DCMAKE_CXX_COMPILER="$PWD/toolchain/bin/clang++" -DTEST_SUITE_LIT="$PWD/llvm/llvm/utils/lit/lit.py" ${{ inputs.cmake_args }}
echo "::endgroup::"
- name: Run testing
shell: bash
Expand Down Expand Up @@ -85,10 +75,7 @@ runs:
echo $LD_LIBRARY_PATH
SYCL_PI_TRACE=-1 sycl-ls
echo "::endgroup::"
echo "::group::SYCL In-Tree End-to-End tests"
ninja -C build-e2e check-sycl-e2e
echo "::endgroup::"
ninja -C build check-sycl-all
- name: Upload test results
uses: actions/upload-artifact@v1
if: always()
Expand All @@ -100,6 +87,4 @@ runs:
if: always()
run: |
rm -rf toolchain
rm -rf build
rm -rf build-e2e
rm -rf llvm_test_suite

0 comments on commit 8996a8b

Please sign in to comment.