2019-09-21 11:09:24 +00:00
|
|
|
steps:
|
|
|
|
- task: UsePythonVersion@0
|
|
|
|
inputs:
|
2019-11-02 20:25:12 +00:00
|
|
|
versionSpec: '3.7'
|
2019-09-21 11:09:24 +00:00
|
|
|
addToPath: true
|
|
|
|
|
|
|
|
- script: |
|
2019-09-21 11:23:45 +00:00
|
|
|
python --version
|
2019-09-21 11:09:24 +00:00
|
|
|
python -m pip install toml click
|
|
|
|
displayName: Installing python dependencies
|
|
|
|
|
|
|
|
- script: |
|
2019-09-21 11:23:45 +00:00
|
|
|
set -e
|
2019-09-21 11:09:24 +00:00
|
|
|
python packager.py build
|
2019-09-21 11:46:00 +00:00
|
|
|
cp target/packager/mac/espanso-*.gz .
|
2019-10-12 08:16:34 +00:00
|
|
|
cp target/packager/mac/espanso-*.txt .
|
2019-09-21 16:59:29 +00:00
|
|
|
cp target/packager/mac/espanso.rb .
|
2019-09-21 11:09:24 +00:00
|
|
|
ls -la
|
|
|
|
displayName: "Cargo build and packaging for MacOS"
|