Skip to content
Open
Show file tree
Hide file tree
Changes from 9 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
9 changes: 5 additions & 4 deletions .pipelines/pip-scripts/build-pip-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -e
MARCH=${1:-x86-64-v3}
PYTHON_VERSION=${2:-3.11}
BUILD_TYPE=${3:-Release}
BUILD_TESTING=${4:-OFF}
BUILD_TESTING=${4:-ON}
ENABLE_COVERAGE=${5:-OFF}
CMAKE_VERSION=${6:-3.28.3}
HDF5_VERSION=${7:-1.13.0}
Expand Down Expand Up @@ -74,8 +74,8 @@ if [ "$MAC_BUILD" == "OFF" ]; then # Build/install Linux dependencies

export PYENV_ROOT="/workspace/.pyenv"
elif [ "$MAC_BUILD" == "ON" ]; then
brew update
brew upgrade
arch -arm64 brew update
arch -arm64 brew upgrade
arch -arm64 brew install \
ninja \
eigen \
Expand Down Expand Up @@ -143,7 +143,8 @@ if [ "$MAC_BUILD" == "OFF" ]; then
-C cmake.define.QDK_CHEMISTRY_ENABLE_COVERAGE=${ENABLE_COVERAGE} \
-C cmake.define.BUILD_TESTING=${BUILD_TESTING} \
-C cmake.define.CMAKE_C_FLAGS="${CMAKE_C_FLAGS}" \
-C cmake.define.CMAKE_CXX_FLAGS="${CMAKE_CXX_FLAGS}"
-C cmake.define.CMAKE_CXX_FLAGS="${CMAKE_CXX_FLAGS}" \
-C cmake.define.QDK_RUN_LONG_TESTS=ON

echo "Checking shared dependencies..."
ldd build/cp*/_core.*.so
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/python-wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ trigger: none
pr: none

schedules:
- cron: 0 23 * * *
- cron: 0 7 * * * # Time is in UTC, so this is 11PM PST
displayName: Nightly Build
branches:
include:
Expand Down
2 changes: 1 addition & 1 deletion .pipelines/templates/build-pip-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ parameters:
default: Debug
- name: buildTesting
type: string
default: OFF
default: ON
- name: enableCoverage
type: string
default: OFF
Expand Down
Loading