Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions .github/workflows/basic-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@ jobs:
- uses: codespell-project/actions-codespell@v2

lit-suite:
runs-on: ubuntu-22.04

strategy:
fail-fast: false
matrix:
llvm-version: [ 14 ]
os: [ ubuntu-22.04, ubuntu-24.04 ]
llvm-version: [ 14, 18, 19 ]
typeart-typegen-legacy: [ 0, 1 ]
preset:
- name: ci-thread-safe-safeptr
Expand All @@ -59,10 +58,29 @@ jobs:
- name: ci-libcxx
libcxx: true
skip_test: true
exclude:
- llvm-version: 14
os: ubuntu-24.04
- llvm-version: 18
os: ubuntu-22.04
- llvm-version: 18
typeart-typegen-legacy: 1
- llvm-version: 19
os: ubuntu-22.04
- llvm-version: 19
typeart-typegen-legacy: 1

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: LLVM apt
if: ${{ matrix.llvm-version == 19 }}
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
echo "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-19 main" | sudo tee /etc/apt/sources.list.d/llvm-19.list

- name: Update apt
run: sudo apt-get update

Expand Down
60 changes: 51 additions & 9 deletions .github/workflows/ext-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,24 @@ env:

jobs:
run-testbench:
runs-on: ubuntu-22.04

strategy:
fail-fast: false
matrix:
llvm-version: [ 14 ]
os: [ ubuntu-22.04, ubuntu-24.04 ]
llvm-version: [ 14, 18, 19 ]
preset:
- name: release-counter
- name: release-safeptr-counter
- name: release-unsafe-counter
exclude:
- llvm-version: 14
os: ubuntu-24.04
- llvm-version: 18
os: ubuntu-22.04
- llvm-version: 19
os: ubuntu-22.04

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand All @@ -32,6 +40,12 @@ jobs:
ssh-key: ${{ secrets.AUTH_SSH_CI_EXT }}
path: test-bench

- name: LLVM apt
if: ${{ matrix.llvm-version == 19 }}
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
echo "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-19 main" | sudo tee /etc/apt/sources.list.d/llvm-19.list

- name: Update apt
run: sudo apt-get update

Expand Down Expand Up @@ -96,15 +110,23 @@ jobs:
path: artifact

run-AD-testbench:
runs-on: ubuntu-22.04

strategy:
fail-fast: false
matrix:
llvm-version: [ 14 ]
os: [ ubuntu-22.04, ubuntu-24.04 ]
llvm-version: [ 14, 18, 19 ]
preset:
- name: release-counter
- name: release-unsafe-counter
exclude:
- llvm-version: 14
os: ubuntu-24.04
- llvm-version: 18
os: ubuntu-22.04
- llvm-version: 19
os: ubuntu-22.04

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand All @@ -117,6 +139,12 @@ jobs:
ref: feat/ci
path: ad-test-bench

- name: LLVM apt
if: ${{ matrix.llvm-version == 19 }}
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
echo "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-19 main" | sudo tee /etc/apt/sources.list.d/llvm-19.list

- name: Update apt
run: sudo apt-get update

Expand Down Expand Up @@ -165,18 +193,26 @@ jobs:
path: artifact

run-OMP-testbench:
runs-on: ubuntu-22.04

env:
OMP_NUM_THREAD: 2

strategy:
fail-fast: false
matrix:
llvm-version: [ 14 ]
os: [ ubuntu-22.04, ubuntu-24.04 ]
llvm-version: [ 14, 18, 19 ]
preset:
- name: release-counter
- name: release-safeptr-counter
exclude:
- llvm-version: 14
os: ubuntu-24.04
- llvm-version: 18
os: ubuntu-22.04
- llvm-version: 19
os: ubuntu-22.04

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4
Expand All @@ -189,6 +225,12 @@ jobs:
ref: ci/omp
path: omp-test-bench

- name: LLVM apt
if: ${{ matrix.llvm-version == 19 }}
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
echo "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-19 main" | sudo tee /etc/apt/sources.list.d/llvm-19.list

- name: Update apt
run: sudo apt-get update

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.20)

project(typeart
VERSION 1.9
VERSION 2.0
HOMEPAGE_URL https://github.com/tudasc/TypeART
DESCRIPTION "LLVM-based type and memory allocation tracking sanitizer"
)
Expand Down
Loading