espanso/ci/build-macos.yml

17 lines
387 B
YAML
Raw Normal View History

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