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
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- 18
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

- name: Build script
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arch-consistency-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Install dependencies
run: sudo apt install g++
- name: Check architecture consistency
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup
run: cmake -B _build -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Configure build
run: cmake -B _build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=_install
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross-arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: |
sudo apt-get install ninja-build
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup
run: |
cmake -B _build \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross-ppc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: |
sudo apt-get install ninja-build
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup
run: |
cmake -B _build \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross-rvv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: |
sudo apt-get -y -qq install ninja-build
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup
run: >
cmake -S . -B _build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cross-sve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
sudo apt-get install ninja-build
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup
run: |
cmake -B _build \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cxx-no-exceptions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup
run: cmake -B _build -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS=-fno-exceptions
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cxx-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
cxx-version: [14, 17, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup
run: cmake -B _build -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{matrix.cxx-version}}
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Install dependencies
run: sudo apt install doxygen python3-breathe python3-sphinx-rtd-theme
- name: Render
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6

- uses: mamba-org/setup-micromamba@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/emulated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- { compiler: 'g++', size: '512'}
steps:
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Install mamba
uses: mamba-org/setup-micromamba@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
CXX=clang++-$LLVM_VERSION
echo "CXX=$CXX" >> $GITHUB_ENV
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Install mamba
uses: mamba-org/setup-micromamba@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: macos-${{ matrix.os }}
name: 'macos-${{ matrix.os }}'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v6
- name: Setup
run: cmake -B _build -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
CXX: clang++-${{ matrix.llvm-version }}
steps:
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup compiler
run: |
wget https://apt.llvm.org/llvm.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Format check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- run: sudo apt install clang-format
- run: |
git fetch origin ${{ github.event.pull_request.base.sha }}
Expand All @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
name: Check inline keyword usage
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- run: sudo apt install clang-tools
- run: sh ./test/check_inline_specifier.sh .

6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install ninja
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup
run: cmake -B _build -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="${{ matrix.sys.flags }}" -G Ninja
- name: Build
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
cmake:p
ninja:p
- name: Checkout xsimd
uses: actions/checkout@v2
uses: actions/checkout@v6
- name: Configure
run: cmake -B _build -DBUILD_TESTS=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -DDOWNLOAD_DOCTEST=ON -G Ninja
- name: Build
Expand All @@ -100,7 +100,7 @@ jobs:
python3 -m pip install --upgrade pip setuptools wheel
python3 -m pip install ninja
- name: Checkout xsimd
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Setup
run: cmake -B _build -DBUILD_TESTS=ON -DDOWNLOAD_DOCTEST=ON -DBUILD_BENCHMARK=ON -DBUILD_EXAMPLES=ON -DCMAKE_BUILD_TYPE=Release -G Ninja
- name: Build
Expand Down
Loading