espanso/ci/build-macos.yml
2019-09-21 13:23:45 +02:00

17 lines
387 B
YAML

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7.4'
addToPath: true
- script: |
python --version
python -m pip install toml click
displayName: Installing python dependencies
- script: |
set -e
python packager.py build
cp target/release/espanso-*.gz .
ls -la
displayName: "Cargo build and packaging for MacOS"