Skip to content

Commit

Permalink
common: add parallel clang Main / Basic build
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Michalski <jan.michalski@intel.com>
  • Loading branch information
janekmi committed Mar 11, 2024
1 parent bbf9c4f commit 1b415d8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,14 @@ jobs:
basic_build:
name: Basic build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- PMDK_CC: gcc
PMDK_CXX: g++
- PMDK_CC: clang
PMDK_CXX: clang++
steps:
- name: Clone the git repo
uses: actions/checkout@v3
Expand All @@ -61,6 +69,8 @@ jobs:
- name: Build sources
env:
NDCTL_ENABLE: n # just to speed up the job
PMDK_CC: ${{ matrix.PMDK_CC }}
PMDK_CXX: ${{ matrix.PMDK_CXX }}
run: make -j$(nproc) test


Expand Down

0 comments on commit 1b415d8

Please sign in to comment.