Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arm builds #2949

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
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
27 changes: 14 additions & 13 deletions .github/workflows/linux-bazel-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,23 @@ name: Bazel build
on: [push, pull_request]

jobs:
build_and_test_ubuntu:
name: Linux Ubuntu 22.04 Bazel build <GCC 11.2.0>
runs-on: ubuntu-22.04
build_and_test:
name: Linux Ubuntu Bazel build <GCC 11.2.0>
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-22.04-arm]
compilation_mode: [fastbuild, dbg, opt]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Mount bazel cache
uses: actions/cache@v3
with:
path: "/home/runner/.cache/bazel"
key: bazel-ubuntu22-gcc11
- name: Mount bazel cache
uses: actions/cache@v4
with:
path: "/home/runner/.cache/bazel"
# Use the OS name in the cache key to separate caches per platform.
key: bazel-${{ matrix.os }}-gcc11

- name: Build Catch2
run: |
bazelisk build --compilation_mode=${{matrix.compilation_mode}} //...
- name: Build Catch2
run: |
bazelisk build --compilation_mode=${{ matrix.compilation_mode }} //...
3 changes: 2 additions & 1 deletion .github/workflows/linux-meson-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ on: [push, pull_request]
jobs:
build:
name: meson ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-22.04-arm ]
cxx:
- g++-11
- clang++-11
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/linux-other-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ on: [push, pull_request]
jobs:
build:
name: ${{matrix.build_description}}, ${{matrix.cxx}}, C++${{matrix.std}} ${{matrix.build_type}}
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-22.04-arm ]
# We add builds one by one in this case, because there are no
# dimensions that are shared across the builds
include:
Expand Down Expand Up @@ -105,9 +106,10 @@ jobs:
run: ctest -C ${{matrix.build_type}} -j `nproc` ${{matrix.other_ctest_args}}
clang-tidy:
name: clang-tidy ${{matrix.version}}, ${{matrix.build_description}}, C++${{matrix.std}} ${{matrix.build_type}}
runs-on: ubuntu-22.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-22.04-arm ]
include:
- version: "15"
build_description: all
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/linux-simple-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ on: [push, pull_request]
jobs:
build:
name: ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-22.04-arm ]
cxx:
- g++-5
- g++-6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac-builds-m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
build:
runs-on: macos-14
runs-on: macos-15
strategy:
matrix:
cxx:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/package-manager-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ on: [push, pull_request]
jobs:
conan_builds:
name: Conan ${{matrix.conan_version}}
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-22.04, ubuntu-22.04-arm]
conan_version:
- '1.63'
- '2.1'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-header-guards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [push, pull_request]
jobs:
build:
# Set the type of machine to run on
runs-on: ubuntu-20.04
runs-on: [ubuntu-22.04, ubuntu-22.04-arm]
steps:

- name: Checkout source code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-simple-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [windows-2019, windows-2022]
os: [windows-2019, windows-2022, windows-2025]
platform: [Win32, x64]
build_type: [Debug, Release]
std: [14, 17]
Expand Down
Loading