Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
janekmi committed Sep 6, 2024
1 parent 4aeaa22 commit 07daca5
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,22 +76,24 @@ jobs:
strategy:
fail-fast: false
matrix:
BUILD_ALL: [y]
LD: [ld]
OBJCOPY: [objcopy]
ARCH: [x86_64]
include:
# - CC: gcc
# CXX: g++
# LD: ld
# - CC: clang
# CXX: clang++
# LD: ld
- CC: gcc
CXX: g++
- CC: clang
CXX: clang++
- CC: aarch64-linux-gnu-gcc
CXX: aarch64-linux-gnu-g++-11
LD: aarch64-linux-gnu-ld
OBJCOPY: aarch64-linux-gnu-objcopy
ARCH: aarch64
BUILD_ALL: n
steps:
- name: Clone the git repo
uses: actions/checkout@v4
with:
ref: 2.1.0

- name: Install dependencies
run: sudo apt-get -y install pandoc
Expand All @@ -105,14 +107,14 @@ jobs:
NDCTL_ENABLE: n # just to speed up the job
PMEMOBJ_IGNORE_DIRTY_SHUTDOWN: y # not recommended for production
PMEMOBJ_IGNORE_BAD_BLOCKS: y # not recommended for production
BUILD_EXAMPLES: n
BUILD_BENCHMARKS: n
DOC: n
BUILD_EXAMPLES: ${{ matrix.BUILD_ALL }}
BUILD_BENCHMARKS: ${{ matrix.BUILD_ALL }}
DOC: ${{ matrix.BUILD_ALL }}
CC: ${{ matrix.CC }}
CXX: ${{ matrix.CXX }}
LD: ${{ matrix.LD }}
OBJCOPY: ${{ matrix.OBJCOPY }}
ARCH: aarch64
ARCH: ${{ matrix.ARCH }}
run: make -j$(nproc) test


Expand Down

0 comments on commit 07daca5

Please sign in to comment.