Skip to content

Commit

Permalink
Improve CI builds, add arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-ogre committed Feb 4, 2025
1 parent c221d76 commit 3b111ec
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 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:
ci_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 (Intel)"
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 Down

0 comments on commit 3b111ec

Please sign in to comment.