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
6 changes: 6 additions & 0 deletions .conan/profiles/sen_gcc_arm64
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include(sen_gcc)

[settings]
arch=armv8

[conf]
10 changes: 9 additions & 1 deletion .github/scripts/generate_matrix_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class JobSpecification:
"""Pipeline job specification that defines the configuration options."""
name: str
os: str
runner: tp.Literal["ubuntu-latest", "windows-2022", "self-hosted"]
runner: tp.Literal["ubuntu-latest", "windows-2022", "self-hosted", "ubuntu-24.04-arm"]
container: Container | None
compiler: Compiler
std: tp.Literal[17, 20, 23]
Expand Down Expand Up @@ -90,6 +90,14 @@ def compute_jobs(release: bool, conan: bool) -> list[JobSpecification]:
JobSpecification("Basic Windows", "windows", "windows-2022", None,
Compiler("msvc", 194, "cl", "cl"), 17, "Debug"))

# Add amd64 jobs
if not release:
jobs.append(
JobSpecification("Basic Ubuntu arm", "ubuntu-24.04",
"ubuntu-24.04-arm", None,
Compiler("gcc_arm64", 12, "gcc-14",
"g++-14"), 17, "Debug"))

return sorted(jobs)


Expand Down
1 change: 1 addition & 0 deletions .github/workflows/conan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
run: |
rm -f ~/.conan2/profiles/default
conan profile detect --force -vquiet
conan config install .conan/profiles/ --target-folder ~/.conan2/profiles/
cp .conan/profiles/sen_$COMPILER ~/.conan2/profiles/default
echo tools.system.package_manager:mode=install >> ~/.conan2/profiles/default
echo tools.system.package_manager:sudo=True >> ~/.conan2/profiles/default
Expand Down
Loading