Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .azure-pipelines/templates/integration-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,35 @@ jobs:
testResultsFiles: '**/test-*.xml'
testRunTitle: 'Publish test results for Python $(PYTHON_VERSION) on $(IMAGE)'
displayName: Publish tests reports
- job: package
strategy:
matrix:
linux:
IMAGE: ubuntu-20.04
TARGET_TRIPLE: x86_64-unknown-linux-gnu
macos:
IMAGE: macOS-12
TARGET_TRIPLE: x86_64-apple-darwin
windows:
IMAGE: windows-2019
TARGET_TRIPLE: x86_64-pc-windows-msvc
pool:
vmImage: $(IMAGE)
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: 3.10
addToPath: true
displayName: Enable the targeted python version
- script: python -m pip install -U tox poetry
displayName: Install required runtime dependencies
- script: |
set -e
poetry install
poetry run pyoxidizer build --release
displayName: Build Lexicon executable
- publish: $(System.DefaultWorkingDirectory)/build/$(TARGET_TRIPLE)/release/install
artifact: executable-$(TARGET_TRIPLE)
- job: trigger_readthedoc
pool:
vmImage: ubuntu-22.04
Expand Down
17 changes: 16 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading