Skip to content

Commit

Permalink
test mac
Browse files Browse the repository at this point in the history
  • Loading branch information
chemix-lunacy committed Mar 15, 2024
1 parent 49ab354 commit 73a6962
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/actions/install-llvm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ runs:
choco uninstall -y llvm
shell: pwsh
if: ${{ (inputs.os == 'windows-2019') && (steps.cache-llvm.outputs.cache-hit != 'true') }}
- name: MacOS - Install build dependencies, ninja
run: brew install ninja
- name: MacOS - Install build dependencies, ccache, ninja
run: brew install ccache ninja
shell: pwsh
if: ${{ (inputs.os == 'macos-11') && (steps.cache-llvm.outputs.cache-hit != 'true') }}
if: ${{ matrix.config.os == 'macos-14' }}

- name: Configure long paths
run: git config --global core.longpaths true
Expand Down
19 changes: 10 additions & 9 deletions .github/workflows/deploy-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ jobs:
# target: "default",
# env: { },
# }
- {
os: "windows-2019",
arch: "amd64",
target: "default",
env: { },
}
# - {
# os: "macos-14",
# arch: "aarch64",
# os: "windows-2019",
# arch: "amd64",
# target: "default",
# env: { },
# }
- {
os: "macos-14",
arch: "arm64",
target: "default",
env: { },
}
steps:
- uses: actions/checkout@v4
- name: Setup rust toolchain
Expand All @@ -38,9 +38,10 @@ jobs:
toolchain: 1.75.0
components: rustfmt clippy
- name: Set up Python 3.9
uses: actions/setup-python@v5
uses: actions/setup-python@v3
with:
python-version: 3.9
if: ${{ matrix.config.os != 'macos-14' }}
- name: Install LLVM
uses: ./.github/actions/install-llvm
with:
Expand Down
2 changes: 1 addition & 1 deletion src/rasqal/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "rasqal"
version = "0.1.3"
version = "0.1.4"
requires-python = ">=3.9"
description = "A dynamically executed quantum-classical hybrid optimizing runtime."
license = { file = "LICENSE" }
Expand Down

0 comments on commit 73a6962

Please sign in to comment.