From 0385fd7af46a446af20c29602e9d1085783fe753 Mon Sep 17 00:00:00 2001 From: ado Date: Wed, 24 Feb 2021 21:11:34 +0100 Subject: [PATCH] try ubuntu icc pipeline --- .github/workflows/ubuntu-latest-icc.yml | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ubuntu-latest-icc.yml b/.github/workflows/ubuntu-latest-icc.yml index 221061e..836ae52 100644 --- a/.github/workflows/ubuntu-latest-icc.yml +++ b/.github/workflows/ubuntu-latest-icc.yml @@ -26,10 +26,6 @@ jobs: run: shell: bash - env: - CXX: dpcpp - CXXFLAGS: -stdlib=libc++ - steps: - uses: actions/checkout@v2 @@ -45,15 +41,6 @@ jobs: - name: Install icc run: script/ci_install_icc.sh $LINUX_HPCKIT_URL $LINUX_CPP_COMPONENTS_WEB - - name: Setup icc - run: source script/ci_setup_icc.sh - - - name: Test setup icc - run: echo $CXX - - - name: Test icc - run: dpcpp -v - - name: Install dependencies run: sudo script/ci_install_deps.sh @@ -61,10 +48,10 @@ jobs: run: echo "/host_usr_local/bin" >> $GITHUB_PATH - name: Configure - run: cmake -S test -B build -D CMAKE_BUILD_TYPE=Debug + run: source script/ci_setup_icc.sh && cmake -S test -B build -D CMAKE_BUILD_TYPE=Debug - name: Build - run: cmake --build build -j ${{ steps.cores.outputs.count }} + run: source script/ci_setup_icc.sh && cmake --build build -j ${{ steps.cores.outputs.count }} - name: Run working-directory: build