From 6ecf0ba2b67c87bc03caafeacb3fe5d6529c779b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20Fahn=C3=B8e=20J=C3=B8rgensen?= Date: Thu, 14 Mar 2024 10:33:14 +0100 Subject: [PATCH] Remove intel debug workflow --- .github/workflows/intel.yml | 57 ------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/intel.yml diff --git a/.github/workflows/intel.yml b/.github/workflows/intel.yml deleted file mode 100644 index 29e8ff17..00000000 --- a/.github/workflows/intel.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Intel-debug - -on: [push] - -env: - CTEST_OUTPUT_ON_FAILURE: 1 - -jobs: - - gcc: - name: GCC ${{ matrix.gcc-version }} - runs-on: ubuntu-22.04 - strategy: - fail-fast: false - matrix: - gcc-version: [11] - steps: - - name: Setup GCC - uses: aminya/setup-cpp@v1 - with: - gcc: ${{ matrix.gcc-version }} - - uses: actions/checkout@v3 - - name: Build and run tests - run: | - scripts/initbuild.sh make-concurrent - scripts/test.sh - - - intel: - name: Intel ${{ matrix.compiler }} - runs-on: ubuntu-20.04 - strategy: - fail-fast: false - matrix: - compiler: [icc, icx] - steps: - - name: Prepare - run: | - wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | \ - gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null - echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | \ - sudo tee /etc/apt/sources.list.d/oneAPI.list - sudo apt update - sudo apt install intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic-2021.4.0 - - name: Setup Intel oneAPI - run: | - source /opt/intel/oneapi/setvars.sh - printenv >> $GITHUB_ENV - - uses: actions/checkout@v3 - - name: Build and run tests - env: - CC: ${{ matrix.compiler }} - CXX: ${{ matrix.compiler }} - run: | - scripts/initbuild.sh make-concurrent - scripts/test.sh -