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/aarch64_linux_bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-24.04-arm
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build
run: make --directory=bazel/ci arm64_build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aarch64_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/aarch64_linux_zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- aarch64-linux-gnu
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux_bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Check docker
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
make:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Env
run: make --directory=cmake/ci amd64_env
- name: Devel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux_zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- x86_64-linux-gnu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_macos_bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: macos-15-intel # Using x86 processors
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install Bazel
run: |
brew update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/amd64_macos_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check cmake
run: cmake --version
- name: Configure
Expand All @@ -31,7 +31,7 @@ jobs:
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check cmake
run: cmake --version
- name: Configure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_macos_zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- x86_64-macos-none
runs-on: macos-15-intel # Using x86 processors
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows_bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install Bazel
run: |
choco install bazel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Configure
run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows_zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- x86_64-windows-gnu
runs-on: windows-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arm64_macos_bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: macos-latest # Using M1 processors, ref: https://github.com/actions/runner-images
steps:
- name: Check out repository code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install Bazel
run: |
brew update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/arm64_macos_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check cmake
run: cmake --version
- name: Configure
Expand All @@ -31,7 +31,7 @@ jobs:
env:
CTEST_OUTPUT_ON_FAILURE: 1
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check cmake
run: cmake --version
- name: Configure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arm64_macos_zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- aarch64-macos-none
runs-on: macos-latest # Using M1 processors
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/arm_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Fetch origin/main
run: git fetch origin main
- name: List of changed file(s)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mips_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/power_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/riscv_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/s390x_linux_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
TARGET: ${{ matrix.targets[0] }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
run: make --directory=cmake/ci ${TARGET}_build
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
zig-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: mlugg/setup-zig@v2
with:
version: latest
Expand Down
Loading