espanso/ci/build-macos.yml

19 lines
477 B
YAML
Raw Normal View History

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
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
2019-09-21 11:46:00 +00:00
cp target/packager/mac/espanso-*.gz .
cp target/packager/mac/espanso-*.txt .
2019-09-21 16:59:29 +00:00
cp target/packager/mac/espanso.rb .
ls -la
displayName: "Cargo build and packaging for MacOS"