Fix compiling error when ARM_MTE=1 iso_alloc_internal.h #718
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: testsuite | |
on: [push, pull_request] | |
jobs: | |
testsuite-osx: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: make tests | |
- run: make cpp_tests | |
testsuite-clang: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [12, 13, 14, 15] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
sudo apt install clang-${{ matrix.version }} | |
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100 | |
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-${{ matrix.version }} 100 | |
- run: make tests | |
- run: make cpp_tests | |
testsuite-clang12-perf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install clang-12 | |
- run: make malloc_cmp_test | |
testsuite-clang-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt install clang clang-format-12 | |
- run: make format-ci | |
testsuite-gcc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: make tests CC=gcc CXX=g++ | |
- run: make cpp_tests CC=gcc CXX=g++ | |
testsuite-musl: | |
runs-on: ubuntu-latest | |
container: | |
image: alpine:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: apk update && apk add build-base bash musl-dev linux-headers | |
- run: make tests CC=gcc CXX=g++ | |
- run: make cpp_tests CC=gcc CXX=g++ | |