Merge pull request #634 from qulacs/632-optimize-light-parametric #121
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: macOS CI | |
on: | |
push: | |
paths-ignore: | |
- ".devcontainer/**" | |
- ".vscode/**" | |
- "doc/**" | |
- "*.md" | |
pull_request: | |
paths-ignore: | |
- ".devcontainer/**" | |
- ".vscode/**" | |
- "doc/**" | |
- "*.md" | |
jobs: | |
macos-build: | |
name: Build on macOS | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
compiler: ["clang"] | |
include: | |
- compiler: "clang" | |
c_compiler: "/usr/local/opt/ccache/libexec/clang" | |
cxx_compiler: "/usr/local/opt/ccache/libexec/clang++" | |
runs-on: "macos-13" | |
env: | |
C_COMPILER: ${{ matrix.c_compiler }} | |
CXX_COMPILER: ${{ matrix.cxx_compiler }} | |
PYTHON: ${{ matrix.python-version }} | |
CACHE_NAME: "ccache-qulacs-build-v2" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup cmake | |
uses: lukka/get-cmake@latest | |
- name: Setup ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
# Include compiler to distinguish cache for each compiler. | |
key: ${{ github.job }}-macos-12-${{ matrix.compiler }} | |
verbose: 2 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Boost for macOS | |
run: | | |
brew upgrade | |
brew install boost | |
brew link boost | |
- name: Install qulacs for macOS | |
run: USE_TEST=Yes ./script/build_gcc.sh | |
- name: Install qulacs Python module | |
run: pip install .[ci] | |
- name: Test in macOS | |
run: | | |
cd ./build | |
make test -j | |
make pythontest -j |