From f3bbbb42a780cdeb5a530494e9ebcd94c63a3d11 Mon Sep 17 00:00:00 2001 From: Matt Borland Date: Fri, 2 Aug 2024 12:37:28 -0400 Subject: [PATCH] Remove SYCL --- .github/workflows/cuda.yml | 67 +------------------------------------- 1 file changed, 1 insertion(+), 66 deletions(-) diff --git a/.github/workflows/cuda.yml b/.github/workflows/cuda.yml index 3760ccc5f..7a805dce4 100644 --- a/.github/workflows/cuda.yml +++ b/.github/workflows/cuda.yml @@ -75,69 +75,4 @@ jobs: run: | cd ../boost-root/__build__ ctest --output-on-failure --no-tests=error - - sycl-cmake-test: - strategy: - fail-fast: false - - runs-on: ubuntu-latest - - steps: - - name: Intel Apt repository - timeout-minutes: 1 - run: | - wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB - sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB - rm GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB - echo "deb https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list - sudo apt-get update - - - name: Install Intel oneAPI compilers - timeout-minutes: 5 - run: sudo apt-get install intel-oneapi-compiler-fortran intel-oneapi-compiler-dpcpp-cpp - - - name: Setup Intel oneAPI environment - run: | - source /opt/intel/oneapi/setvars.sh - printenv >> $GITHUB_ENV - - - name: checkout project code - uses: actions/checkout@v4 - - - name: Install Packages - run: | - sudo apt-get install -y cmake make - - - name: Setup Boost - run: | - echo GITHUB_REPOSITORY: $GITHUB_REPOSITORY - LIBRARY=${GITHUB_REPOSITORY#*/} - echo LIBRARY: $LIBRARY - echo "LIBRARY=$LIBRARY" >> $GITHUB_ENV - echo GITHUB_BASE_REF: $GITHUB_BASE_REF - echo GITHUB_REF: $GITHUB_REF - REF=${GITHUB_BASE_REF:-$GITHUB_REF} - REF=${REF#refs/heads/} - echo REF: $REF - BOOST_BRANCH=develop && [ "$REF" == "master" ] && BOOST_BRANCH=master || true - echo BOOST_BRANCH: $BOOST_BRANCH - cd .. - git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root - cd boost-root - mkdir -p libs/$LIBRARY - cp -r $GITHUB_WORKSPACE/* libs/$LIBRARY - git submodule update --init tools/boostdep - python3 tools/boostdep/depinst/depinst.py --git_args "--jobs 3" $LIBRARY - - name: Configure - run: | - cd ../boost-root - mkdir __build__ && cd __build__ - cmake -DBOOST_INCLUDE_LIBRARIES=$LIBRARY -DBUILD_TESTING=ON -DBOOST_DECIMAL_ENABLE_SYCL=ON .. - - name: Build tests - run: | - cd ../boost-root/__build__ - cmake --build . --target tests -j $(nproc) - - name: Run tests - run: | - cd ../boost-root/__build__ - ctest --output-on-failure --no-tests=error \ No newline at end of file +