Skip to content

Disable the execution of large tests #3

Disable the execution of large tests

Disable the execution of large tests #3

Workflow file for this run

on: push
jobs:
run-tests-native:
runs-on: ubuntu-24.04-arm
strategy:
matrix:
cxx-compiler: [g++, clang++]
defaults:
run:
shell: bash --noprofile --norc -euxo pipefail {0}
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Build and run tests
uses: devcontainers/[email protected]
with:
configFile: .devcontainer/aarch64-native/devcontainer.json
runCmd: |
set -euxo pipefail
cmake . \
-D CMAKE_BUILD_TYPE='Release' \
-D CMAKE_CXX_COMPILER='${{ matrix.cxx-compiler }}' \
-D CMAKE_CXX_FLAGS='-Ofast -mcpu=native -mtune=native -msve-vector-bits=128'
cmake --build . -v
cmake --build . --target test