Skip to content

Commit

Permalink
Update CI builds and arm configuration
Browse files Browse the repository at this point in the history
- Updated ci_builds.yml for improved CI integration
- arm changes applied
  • Loading branch information
johnnynunez authored and artem-ogre committed Feb 4, 2025
1 parent c221d76 commit 85fec26
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions .github/workflows/ci_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,31 @@ name: CI Builds
on: [push]

jobs:
ci_workflow_test:
builds:
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- {
name: "Windows",
os: windows-latest
}
- {
name: "Ubuntu",
os: ubuntu-latest
}
- {
name: "macOS",
os: macos-latest
}
- name: "Windows 2025 (x64)"
os: windows-2025
- name: "Ubuntu 24.04 (x64)"
os: ubuntu-24.04
- name: "Ubuntu 24.04 (arm64)"
os: ubuntu-24.04-arm
- name: "macOS 13 (x64)"
os: macos-13
- name: "macOS 15 (arm64)"
os: macos-15

steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand All @@ -51,4 +49,4 @@ jobs:
- name: "Build: header-only, boost"
run: conan create CDT/ -o use_boost=True -o enable_testing=True --build missing
- name: "Build: header-only, without boost"
run: conan create CDT/ -o use_boost=False -o enable_testing=True
run: conan create CDT/ -o use_boost=False -o enable_testing=True

0 comments on commit 85fec26

Please sign in to comment.