Skip to content

Commit

Permalink
try to fix debug job (how to trigger it?)
Browse files Browse the repository at this point in the history
  • Loading branch information
marscher committed Aug 19, 2024
1 parent 986c61c commit e23f1de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .azure/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
# Windows
windows-3.8:
imageName: "windows-2019"
python.version: '3.8'
python.version: '3.8' # todo: 3.8 will be EOL on October 31, 2024
jdk.version: '8'
windows-3.9:
imageName: "windows-2019"
Expand All @@ -93,7 +93,7 @@ jobs:
# OSX
mac-3.8:
imageName: "macos-12"
python.version: '3.8'
python.version: '3.8' # todo: 3.8 will be EOL on October 31, 2024
jpypetest.fast: 'true'
jdk.version: '8'
mac-3.12:
Expand All @@ -115,11 +115,12 @@ jobs:
matrix:
linux-3.8:
imageName: "ubuntu-16.04"
jdk_version: "1.11" # fixme: this version is simply ignored.
jdk.version: "11"
python.version: '3.8'
pool:
vmImage: $(imageName)
steps:
- template:
- template: scripts/deps.yml
- template: scripts/debug.yml

4 changes: 4 additions & 0 deletions .azure/scripts/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ steps:
inputs:
versionSpec: '$(python.version)'

- template: jdk.yml
parameters:
version: '$(jdk.version)'

- script: |
sudo apt install gdb
pip install ./
Expand Down

0 comments on commit e23f1de

Please sign in to comment.