Skip to content

[INFRA] Add IntelLLVM CI #15

[INFRA] Add IntelLLVM CI

[INFRA] Add IntelLLVM CI #15

Workflow file for this run

name: Intel
on:
push:
branches:
- 'main'
pull_request:
types:
- unlabeled
workflow_dispatch:
concurrency:
group: intel-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: ${{ github.event_name != 'push' }}
env:
TZ: Europe/Berlin
defaults:
run:
shell: bash -Eexuo pipefail {0}
jobs:
build:
name: IntelLLVM
runs-on: ubuntu-22.04
timeout-minutes: 120
if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' || github.event.label.name == 'lint'
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
submodules: true
- name: Setup toolchain
uses: seqan/actions/setup-toolchain@main
with:
compiler: gcc-13
install_compiler: false
ccache_size: 75M
- name: Install compiler
run: |
sudo apt install --yes intel-oneapi-dpcpp-cpp-2023.2.1
echo "CC=icx" >> "$GITHUB_ENV"
echo "CXX=icpx" >> "$GITHUB_ENV"
- name: Install CMake
uses: seqan/actions/setup-cmake@main
with:
cmake: 3.16.9
- name: Configure tests
run: |
set +xu; source /opt/intel/oneapi/setvars.sh; set -xu
mkdir build
cd build
cmake ../test/unit -DCMAKE_BUILD_TYPE=Release \
-DHIBF_NATIVE_BUILD=OFF \
-DHIBF_VERBOSE_TESTS=OFF
make -j2 gtest_build
- name: Build tests
run: |
ccache -z
cd build
make -k -j2
ccache -sv
- name: Run tests
run: |
cd build
ctest . -j2 --output-on-failure