Skip to content

Commit

Permalink
Update nightly.yaml for Azure Pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolajBjorner committed Feb 1, 2024
1 parent f16afe5 commit 0a1a57c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions scripts/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ stages:
- script: sudo apt install g++-aarch64-linux-gnu -y
- script: sudo apt install ninja-build -y
- script: |
mkdir build
cd build
cmake \
-DCMAKE_BUILD_TYPE=RelWithDebInfo\
-DCMAKE_CXX_COMPILER=aarch64-linux-gnu-g++\
Expand All @@ -107,10 +109,11 @@ stages:
-DCMAKE_INSTALL_PYTHON_PKG_DIR=bin/python\
-DZ3_BUILD_LIBZ3_SHARED=ON\
-DCMAKE_INSTALL_PREFIX=dist\
-G "Ninja" .
-G "Ninja" ../
ninja install
zip -r z3-$(NightlyVersion)-ubuntu-arm64.zip dist
- script: cp *.zip $(Build.ArtifactStagingDirectory)/.
cd ..
- script: cp build/*.zip $(Build.ArtifactStagingDirectory)/.
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'UbuntuArm64CMAKE'
Expand Down

0 comments on commit 0a1a57c

Please sign in to comment.